~/laravel-scaffold-v1$ php artisan migrate
This seeder fill lists to database
~/laravel-scaffold-v1$ php artisan db:seed
This seeder create 10 users to database
~/laravel-scaffold-v1$ php artisan db:seed --class=FakerDataSeeder
// Watching Assets For Changes
~/laravel-scaffold-v1$ npm run watch
// Run all Mix tasks...
~/laravel-scaffold-v1$ npm run dev
// Run all Mix tasks and minify output...
~/laravel-scaffold-v1$ npm run production
Local Development Server
If you have PHP installed locally and you would like to use PHP's built-in development server to serve your application, you may use the serve Artisan command. This command will start a development server at http://localhost:8000
~/laravel-scaffold-v1$ php artisan serve