PHP code example of gilsonreis / laravel-crud-generator

1. Go to this page and download the library: Download gilsonreis/laravel-crud-generator library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

gilsonreis / laravel-crud-generator example snippets


Route::prefix('auth')
    ->name('auth.')
    ->group(function () {
        Route::post('/login', LoginAction::class)->name('login');
        Route::delete('/logout', LogoutAction::class)
            ->name('logout')
            ->middleware('auth:sanctum');
    });

Route::prefix('auth')
    ->name('auth.')
    ->group(function () {
        Route::post('/login', LoginAction::class)->name('login');
    });
bash
php artisan vendor:publish --provider="Gilsonreis\LaravelCrudGenerator\LaravelCrudGeneratorServiceProvider"
bash
composer dump-autoload
bash
php artisan crud:menu
bash
php artisan make:crud-repository RepositoryName --model=Product
bash
php artisan make:crud-actions --model=Product
bash
php artisan make:crud-routes --model=Product
bash
php artisan make:crud-auth
bash
php artisan make:crud-auth-jwt
bash
php artisan crud:menu