Description
Performing any actions during the deployment process.
Create your first operation using php artisan make:operation console command and define the actions it should
perform.
use App\Models\Article;use DragonCode\LaravelDeployOperations\Operation; return new class extends Operation { public function __invoke(): void { Article::query() ->lazyById(chunkSize: 100, column: 'id') ->each->update(['is_active' => true]); // and/or any actions... }};
Next, you can run the console command to start operations:
php artisan operations
Recent Courses on Laravel Daily
[NEW] Marketing for Developers in 2026
7 lessons
52 min
AI Agents/IDEs for Laravel: May 2026 (Claude Code, Codex, OpenCode, etc)
7 lessons
52 min
Laravel 13 Starter Kit Teams and Customizations
10 lessons
33 min