PHP code example of laravision / crud

1. Go to this page and download the library: Download laravision/crud 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/ */

    

laravision / crud example snippets


// ...
'providers' => [
    /*
     * Package Service Providers...
     */

    Laravision\Crud\CrudServiceProvider::class,
],
// ...
shell
php artisan make:crud post
shell
php artisan make:crud post --model=Post
shell
php artisan make:crud post --view=admin/post
shell
php artisan make:crud Admin/Post
shell
php artisan make:crud -h