platformContent = $platformContent; } public function index($request) { if (isset($request['id'])){ return $this->platformContent ->where('id',$request['id'])->orderBy('id', 'desc')->first(); } $this->platformContent = $this->platformContent ->orderBy('id', 'desc')->get(); return $this->platformContent; } }