PHP code example of eltristi / extra-commands

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

    

eltristi / extra-commands example snippets

bash
php artisan vendor:publish --provider="eltristi\ExtraCommands\ExtraCommandsServiceProvider"
bash
php artisan make:repository UserRepository --model=User --interface
bash
php artisan make:enum UserTypeEnum --type=string
bash
php artisan make:trait MyTrait