Laravel - pmdacosta/notes GitHub Wiki

Artisan

Run server

php artisan serve

Run migration

php artisan migrate

Refresh migration

php artisan migrate:refresh

Refresh migration and seed

php artisan migrate:refresh --seed

Create a controller for the class Listing

php artisan make:controller ListingController

Publish vendor

php artisan vendor:publish

Create symbolic link from storage to public folder

php artisan storage:link