*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'name' => $this->name, 'lecturer_id' => $this->lecturer_id, 'description' => $this->description, 'logo' => $this->getFirstMediaUrl('logo', 'thumb'), 'created_by' => $this->created_by, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at, ]; } }