composer create-project --prefer-dist laravel/laravel task-manager
npm install
make lint-fix
make lint
make test
make test-coverage
make start-frontend
make start
php artisan breeze:install
php artisan lang:publish
php artisan make:model TaskStatus --all
php artisan make:model Label --all
php artisan make:model Task --all
make migrate
make seed
php artisan make:test Controllers/TaskStatusControllerTest
https://scribe.knuckles.wtf/laravel/
See 'config/scribe.php'
php artisan route:list
# off 'npm run dev' before:
php artisan scribe:generate --verbose