環境 Windows10 Apache 2.4.47PHP7.4 Postgresql13.4 Laragon5.0.0 Laravel v8.59
参考サイト
こちらのサイトの手順でLaravel8でも動作します。
Laravelのバッチ処理を作る
手順
artisanコマンドで実行するクラス(TestBatch)を作成する。
PS C:\laragon\www\lr8> php artisan make:command TestBatch
Console command created successfully.
app/Console/CommandsにTestBatch.phpが作成されます。何も編集はしていません。
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class TestBatch extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'command:name';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Command description';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
return 0;
}
}
ちなみに同じクラス名でもう一度作成しようとすると
PS C:\laragon\www\lr8> php artisan make:command TestBatch
Console command already exists!
ということでエラーになり上書きで作成されたりはしないので、再作成する場合は一度TestBatch.phpを削除して再作成という流れになります。
起動方法
artisanコマンドで実行。指定するのは$signature = ‘command:name’に指定している値を指定します。するとpublic function handle()メソッドが実行されます。
PS C:\laragon\www\lr8> php artisan command:name
コメント