Answers for "make specific api a resource laravel"

PHP
2

laravel create resource

php artisan make:resource ResourceName
Posted by: Guest on October-04-2021
1

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
Posted by: Guest on July-24-2021

Code answers related to "make specific api a resource laravel"

Browse Popular Code Answers by Language