Create resource ( to Json)

php artisan  make:resource PostResource


pubic function toarray(Request $request):array {

return [

'id'=>$this->id,

'title'=>$this->title

]

}


in Post Controller 


index(){

return PostResource::collection(Post:all());

}


Comments

Popular posts from this blog

Making Livewire Run on SHared Hosting