Skip to content

Commit

Permalink
Add missing make commands + Migrate Fresh
Browse files Browse the repository at this point in the history
  • Loading branch information
proclame committed Oct 28, 2019
1 parent 8586394 commit d26cc3f
Showing 1 changed file with 80 additions and 1 deletion.
81 changes: 80 additions & 1 deletion Laravel 5 Artisan.sublime-commands
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,15 @@
"fill_in_lable": "Enter make:auth options (optional)"
}
},
{
"caption": "Laravel Artisan 5: Make:Channel",
"command": "laravel5_artisan",
"args": {
"command": "make:channel",
"fill_in": true,
"fill_in_lable": "Enter the name of the channel class"
}
},
{
"caption": "Laravel Artisan 5: Make:Command",
"command": "laravel5_artisan",
Expand Down Expand Up @@ -158,6 +167,24 @@
"fill_in_lable": "Enter the name of the event class"
}
},
{
"caption": "Laravel Artisan 5: Make:Exception",
"command": "laravel5_artisan",
"args": {
"command": "make:exception",
"fill_in": true,
"fill_in_lable": "Enter the name of the exception class"
}
},
{
"caption": "Laravel Artisan 5: Make:Factory",
"command": "laravel5_artisan",
"args": {
"command": "make:factory",
"fill_in": true,
"fill_in_lable": "Enter the name of the factory class"
}
},
{
"caption": "Laravel Artisan 5: Make:Job",
"command": "laravel5_artisan",
Expand Down Expand Up @@ -232,6 +259,33 @@
"fill_in_lable": "Enter the name of the model"
}
},
{
"caption": "Laravel Artisan 5: Make:Notification",
"command": "laravel5_artisan",
"args": {
"command": "make:notification",
"fill_in": true,
"fill_in_lable": "Enter the name of the notification class"
}
},
{
"caption": "Laravel Artisan 5: Make:Observer",
"command": "laravel5_artisan",
"args": {
"command": "make:observer",
"fill_in": true,
"fill_in_lable": "Enter the name of the observer class"
}
},
{
"caption": "Laravel Artisan 5: Make Policy",
"command": "laravel5_artisan",
"args": {
"command": "make:policy",
"fill_in": true,
"fill_in_lable": "Enter the Policy name"
}
},
{
"caption": "Laravel Artisan 5: Make:Provider",
"command": "laravel5_artisan",
Expand All @@ -250,6 +304,24 @@
"fill_in_lable": "Enter the name of the request"
}
},
{
"caption": "Laravel Artisan 5: Make:Resource",
"command": "laravel5_artisan",
"args": {
"command": "make:resource",
"fill_in": true,
"fill_in_lable": "Enter the name of the resource"
}
},
{
"caption": "Laravel Artisan 5: Make Rule",
"command": "laravel5_artisan",
"args": {
"command": "make:rule",
"fill_in": true,
"fill_in_lable": "Enter the rule name"
}
},
{
"caption": "Laravel Artisan 5: Make:Seeder",
"command": "laravel5_artisan",
Expand All @@ -276,7 +348,14 @@
}
},
{
"caption": "Laravel Artisan 5: Migrate:Refresh",
"caption": "Laravel Artisan 5: Migrate:Fresh (Drop all tables and re-run all migrations)",
"command": "laravel5_artisan",
"args": {
"command": "migrate:fresh",
}
},
{
"caption": "Laravel Artisan 5: Migrate:Refresh (Reset and re-run all migrations)",
"command": "laravel5_artisan",
"args": {
"command": "migrate:refresh"
Expand Down

0 comments on commit d26cc3f

Please sign in to comment.