PHP code example of caner / laravel-helper-commands

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

    

caner / laravel-helper-commands example snippets

  


/**
 * Caner/LaravelHelperCommands Config File.
 */
return [
    /**
     * List all controllers paths.
     *
     * This value is used to find all Controller files.
     */
    'controller_paths' => [
        'App/Http/Controllers',
    ],

    /**
     * List Excluded controllers for permission check.
     */
    'excluded_controllers_for_permission_check' => [
        // 'App\Http\Controllers\TestController'
    ],
];
bash  
php artisan vendor:publish --tag="laravel-helper-commands-config"
bash 
php artisan dev:permission-check
bash 
php artisan dev:missing-routes
bash 
php artisan dev:missing-controller-methods