PHP code example of fbnkcmaster / appskeleton-for-laravel

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

    

fbnkcmaster / appskeleton-for-laravel example snippets


protected $commands = [
	// add the line below to this array
    \FBNKCMaster\AppSkeletonForLaravel\AppSkeletonCommand::class
];

protected $commands = [
	// add the line below to this array
    path/to/where/you/put/AppSkeleton/AppSkeletonCommand::class
];

public function register()
{
    if ($this->app->environment() == 'local') {
        $this->app->register('Laracasts\Generators\GeneratorsServiceProvider');
    }
}
bash
$ php artisan make:appskeleton
bash
$ php artisan make:appskeleton path/to/your/appskeleton_file.json