“Laravel Resource API” Code-Antworten

Laravel Apiresource

When declaring resource routes that will be consumed by APIs,
you will commonly want to exclude routes that present HTML
templates such as "create" and "edit"

//Route=>
use App\Http\Controllers\PhotoController;
Route::apiResource('photos', PhotoController::class);

//artisan command =>
php artisan make:controller PhotoController --api
  
Mohamad

Laravel Resource API

php artisan make:resource UserResource
php artisan make:resource User --collection 
php artisan make:resource UserCollection
Sanjaya

Ähnliche Antworten wie “Laravel Resource API”

Fragen ähnlich wie “Laravel Resource API”

Weitere verwandte Antworten zu “Laravel Resource API” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen