PHP code example of kamalsroor / crud-generator

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

    

kamalsroor / crud-generator example snippets


/*  The routes of generated crud will set here: Don't remove this line  */
shell
php artisan vendor:publish --provider="KamalSroor\CrudGenerator\CrudServiceProvider"
shell
php artisan make:crud category
shell
php artisan make:crud category --translatable
shell
php artisan make:crud category --has-media
shell
php artisan make:crud category --translatable --has-media