Last active
February 29, 2020 02:21
-
-
Save bagaswidodo/209590e0672197ec0fb57e7874b3d5a0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| composer create project laravel | |
| npm install | |
| php artisan key:generate | |
| php artisan:migrate | |
| composer require laravel/ui | |
| php artisan ui vue --auth | |
| php artisan migrate | |
| task schedyuer | |
| php artisan make:command command name | |
| edit app/console/command | |
| do in handle method() | |
| exec with | |
| php artisan commad:<created command> | |
| to execut open kernel.php | |
| add in schedule method call the command that created ->everywhat() | |
| untuk quee | |
| php artisan queue:table | |
| php artisan migrate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment