Property | Type | Description | |
---|---|---|---|
$description | string | The console command description. | |
$meta | array | Meta information for the requested migration. | |
$name | string | The console command name! |
Method | Description | |
---|---|---|
__construct ( Illuminate\Filesystem\Filesystem $files ) : void | Create a new command instance. | |
fire ( ) : void | Execute the console command. | |
getMeta ( ) : array | Get access to $meta array | |
getObjName ( string $config = 'Name' ) : mixed | Generate names |
Method | Description | |
---|---|---|
getArguments ( ) : array | Get the console command arguments. | |
getOptions ( ) : array | Get the console command options. | |
makeMeta ( ) : void | Generate the desired migration. | |
makeMigration ( ) : void | Generate the desired migration. | |
makeModel ( ) : void | Generate an Eloquent model, if the user wishes. |
Method | Description | |
---|---|---|
makeController ( ) : void | Make a Controller with default actions | |
makeLocalization ( ) | Setup the localizations | |
makeSeed ( ) : void | Generate a Seed | |
makeViewLayout ( ) : void | Make a layout.blade.php with bootstrap | |
makeViews ( ) : void | Setup views and assets |
public __construct ( Illuminate\Filesystem\Filesystem $files ) : void | ||
$files | Illuminate\Filesystem\Filesystem | |
return | void |
protected getArguments ( ) : array | ||
return | array |
public getObjName ( string $config = 'Name' ) : mixed | ||
$config | string | |
return | mixed |
protected getOptions ( ) : array | ||
return | array |
protected makeMigration ( ) : void | ||
return | void |
protected string $description | ||
return | string |
protected array $meta | ||
return | array |