Answers for "laravel make controller api resource"

7

laravel create resource controller

php artisan make:controller PhotoController --resource --model=Photo
Posted by: Guest on April-23-2020
1

how to create controller in laravel

Simple controller:
php artisan make:controller nameOfController  
  
Want to create controller in a folder? use it like this:
php artisan make:controller NameOfFolder/nameOfController  
  
Resource Controller:This controller will create all CRUD methods
php artisan make:controller nameOfController --resource
Posted by: Guest on December-22-2020
0

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
1

how to create resource controller in laravel

Resource Controller:This controller will create all CRUD methods
php artisan make:controller nameOfController --resource
Posted by: Guest on December-22-2020
0

laravel make api resource

php artisan make:resource User --collection

php artisan make:resource UserCollection
Posted by: Guest on June-02-2021

Code answers related to "laravel make controller api resource"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language