PHP code example of butcherman / artisan-dev-commands

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

    

butcherman / artisan-dev-commands example snippets


composer 

php artisan log:clean

php artisan log:purge

php artisan make:trait TraitName  // or Folder/TraitName

php artisan make:page folder.pageName  // To add the component using the Vue's Options API, add the --optionsApi flag

php artisan make:vuecomponent folder.componentName  // To add the component using the Vue's Options API, add the --optionsApi flag

php artisan make:form folder.formName  // To add the form using the Vue's Options API, add the --optionsApi flag