| name | govard-laravel |
| description | This skill should be used when the user asks to "run migrations", "run artisan commands",
"clear Laravel cache", "config:cache", "run queue operations", "schedule:run", "tinker into
app", "artisan tinker", "run Laravel Pint", or "npm dev/prod". Provides Laravel-specific
Govard shortcuts and commands. DEPENDENT on govard-toolbox for base commands.
|
| compatibility | claude, codex, opencode, copilot |
| depends | ["govard-toolbox"] |
| metadata | {"audience":"developers","workflow":"laravel"} |
Govard Laravel Commands
Laravel-specific shortcuts and commands for Govard environments.
Related Skills
REQUIRED BACKGROUND: Load govard-toolbox first — this skill only covers Laravel-specific shortcuts layered on top of Govard's base environment commands (govard up, govard sh, govard db, remote sync, Xdebug setup).
Artisan Commands
govard sh -c "govard tool artisan config:cache"
govard sh -c "govard tool artisan config:clear"
govard sh -c "govard tool artisan cache:clear"
govard sh -c "govard tool artisan route:cache"
govard sh -c "govard tool artisan route:clear"
govard sh -c "govard tool artisan view:cache"
govard sh -c "govard tool artisan view:clear"
Database
govard sh -c "govard tool artisan migrate"
govard sh -c "govard tool artisan migrate:fresh"
govard sh -c "govard tool artisan migrate:refresh"
govard sh -c "govard tool artisan migrate:rollback"
govard sh -c "govard tool artisan migrate:status"
govard sh -c "govard tool artisan db:seed"
govard sh -c "govard tool artisan db:seed --class=UserSeeder"
govard sh -c "govard tool artisan make:factory PostFactory"
govard sh -c "govard tool artisan tinker"
govard db connect
Queue Operations
govard sh -c "govard tool artisan queue:work"
govard svc up
govard sh -c "govard tool artisan queue:retry all"
govard sh -c "govard tool artisan queue:failed"
govard sh -c "govard tool artisan queue:flush"
Scheduler
govard sh -c "govard tool artisan schedule:run"
govard sh -c "govard tool artisan schedule:list"
Development
govard sh -c "govard tool artisan make:command MyCommand"
govard sh -c "govard tool artisan make:controller MyController"
govard sh -c "govard tool artisan make:model Post"
govard sh -c "govard tool artisan make:migration create_posts_table"
govard sh -c "govard tool artisan tinker"
govard sh -c "govard tool artisan route:list"
govard sh -c "govard tool artisan route:list --path=api"
Testing
govard sh -c "govard tool artisan test"
govard sh -c "govard tool php artisan test"
govard sh -c "vendor/bin/phpunit"
govard sh -c "vendor/bin/phpunit --filter=UserTest"
Frontend Assets
govard tool npm install
govard tool npm run dev
govard tool npm run prod
govard tool npm run watch
govard sh -c "npm run dev"
govard sh -c "npm run production"
govard sh -c "rm -rf node_modules/.vite"
Logging
govard sh -c "tail -f storage/logs/laravel.log"
govard sh -c "govard tool artisan log:clear"
govard sh -c "curl -s http://local.test/_debugbar/open"
Common Workflows
After Pulling Code
govard tool composer install
govard sh -c "govard tool artisan migrate"
govard sh -c "govard tool artisan cache:clear"
govard sh -c "npm install && npm run dev"
Creating Features
govard sh -c "govard tool artisan make:model Post -mcr"
govard sh -c "govard tool artisan migrate"
govard sh -c "govard tool artisan route:list"
Deployment Prep
govard sh -c "govard tool artisan config:cache"
govard sh -c "govard tool artisan route:cache"
govard sh -c "govard tool artisan view:cache"
govard sh -c "npm run prod"