PHP code example of thereline / crudmaster

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

    

thereline / crudmaster example snippets


   php artisan vendor:publish  --tag=crudmaster-providers

   php artisan crudmaster:merge-package-json


   php artisan vendor:publish --tag="crudmaster-migrations"
   php artisan migrate

   php artisan vendor:publish --tag="crudmaster-config"

   return [
   ];

   php artisan vendor:publish --tag="crudmaster-views"

   php artisan vendor:publish --tag=your-package-name-translations

   $crudMaster = new Thereline\CrudMaster();
   echo $crudMaster->echoPhrase('Hello, Thereline!');

   php artisan crudmaster:generate ModelName --columns=name,email,password --views=blade