Edit File: IntrosResource.php
<?php namespace App\Http\Resources; use Illuminate\Http\Resources\Json\JsonResource; class IntrosResource extends JsonResource { /** * Transform the resource into an array. * * @param \Illuminate\Http\Request $request * @return array */ public function toArray( $request ) { $lang = $request->header('lang') ?? 'ar'; return [ 'id' => $this->id, 'title' => $this->title?$this->getTranslations('title')[$lang]:'', // 'desc' => $this->desc??'', 'image' => $this->imagePath ]; } }
Back to File Manager