*/ public function toArray(Request $request): array { $app_base_url = Config::get('appSetting.app_base_url'); return [ "id"=> $this->id, 'title' => $this->title, 'description' => $this->description, 'image' => $this->image ? $app_base_url . $this->image : null, ]; } }