PHP code example of leandro-grg / list-maker

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

    

leandro-grg / list-maker example snippets


return [
    //...
    'providers' => [
        //...
        LeandroGRG\ListMaker\Providers\ListMakerServiceProvider::class
    ]
    //...
];

return [
    //...
    'aliases' => [
        //...
        'ListMaker' => LeandroGRG\ListMaker\ListGen::class
        //...
    ]
    //...
];


static function parseDividerType ($item)
{
    return [];
}
bash
php artisan vendor:publish --provider='LeandroGRG\ListMaker\Providers\ListMakerServiceProvider'
bash
php artisan migrate

 LeandroGRG\ListMaker\ListGen::make('list-name')