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());
}
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
Post a Comment