artisan call laravel code example
Example 1: run artisan command from controller
If you have simple job to do you can do it from route file.
For example you want to clear cache. In terminal it would be php artisan
cache:clear In route file that would be:
\Artisan::call('cache:clear');
Example 2: laravel create command tutorial
$arguments = $this->arguments();
Example 3: laravel create command tutorial
<?php
namespace App\Console\Commands;
use App\Models\User;
use App\Support\DripEmailer;
use Illuminate\Console\Command;
class SendEmails extends Command
{
protected $signature = 'email:send {user}';
protected $description = 'Send drip e-mails to a user';
public function __construct()
{
parent::__construct();
}
public function handle(DripEmailer $drip)
{
$drip->send(User::find($this->argument('user')));
}
}