Answers for "laravel apiresource"

PHP
0

laravel api response trait

trait RespondsWithHttpStatus
{
    protected function success($message, $data = [], $status = 200)
    {
        return response([
            'success' => true,
            'data' => $data,
            'message' => $message,
        ], $status);
    }

    protected function failure($message, $status = 422)
    {
        return response([
            'success' => false,
            'message' => $message,
        ], $status);
    }
}
Posted by: Guest on September-02-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
0

laravel make api resource

php artisan make:resource User --collection

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

laravel apiresource

GET -	    "/photos/{photo}/comments" - index
GET -	    "/photos/{photo}/comments/create" - create
POST -	    "/photos/{photo}/comments" - store
GET -	    "/comments/{comment}" - show
GET -	    "/comments/{comment}/edit" - edit
PUT/PATCH -	"/comments/{comment}" - update
DELETE -	"/comments/{comment}" - destroy
Posted by: Guest on September-27-2021

Browse Popular Code Answers by Language