Semester::class, 'start_date' => 'date', 'end_date' => 'date', 'is_active' => 'boolean', ]; } protected function formattedStartDate(): Attribute { return Attribute::make( get: fn () => $this->start_date->format('d M Y'), ); } protected function formattedEndDate(): Attribute { return Attribute::make( get: fn () => $this->end_date->format('d M Y'), ); } }