PHP code example of sayeed / crud-from-db

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

    

sayeed / crud-from-db example snippets


'providers' => [
    // ...
    Collective\Html\HtmlServiceProvider::class,
    Sayeed\CrudFromDb\CrudFromDbServiceProvider::class,
];

'aliases' => [
    // ...
    'Form' => Collective\Html\FormFacade::class,
    'Html' => Collective\Html\HtmlFacade::class,
];
 artisan crud:custom
 artisan crud:custom -m article
 artisan crud:custom --model=article
 artisan crud:custom -c mysql
 artisan crud:custom --connection=mysql
 artisan crud:custom -a
 artisan crud:custom --auth
 artisan crud:custom -f
 artisan crud:custom --force
 artisan crud:custom -s table1,table2
 artisan crud:custom --skip=table1,table2
 artisan crud:custom -h
 artisan crud:custom --help