PHP code example of santosalan / lumen-crud

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

    

santosalan / lumen-crud example snippets


$app->withFacades();
$app->withEloquent();

$app->register(SantosAlan\LumenCrud\ServiceProvider::class);

return [
    /**
     * Irregulares Words
     */
    'doctrine-inflector' => [
        'plural' => [
            'irregular' => [
                'traducao' => 'traducoes',
            ],
        ],

        'singular' => [
            'irregular' => [
                'traducoes' => 'traducao',
            ],
        ],
    ],
];

$app->boot();
Inflector::rules('plural', config('app.doctrine-inflector.plural'));
Inflector::rules('singular', config('app.doctrine-inflector.singular'));