Code Explainers

Code explainers tagged #artisan-command

php
namespace App\Console\Commands;
 
use App\Models\Region;
use App\Services\ReportBuilder;

How a Laravel command warms report caches

caching cache-warming artisan-command
Intermediate 5 steps
php
<?php
 
namespace App\Console\Commands;
 

Releasing stale document locks in Laravel

artisan-command transactions row-locking
Intermediate 6 steps
php
<?php
 
namespace App\Console\Commands;
 

How a database backup command works in Laravel

artisan-command shell-process error-handling
Intermediate 8 steps