Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

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 AppHttpControllersPhotoController;
Route::apiResource('photos', PhotoController::class);

//artisan command =>
php artisan make:controller PhotoController --api
  
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #laravel #apiresource
ADD COMMENT
Topic
Name
4+9 =