Log::infoの行で「Undefined variable: req」と出ます、なぜでしょうか??
<?php namespace App\Jobs; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Foundation\Bus\Dispatchable; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Queue\SerializesModels; use Illuminate\Support\Facades\Log; class RecordJob implements ShouldQueue { use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; public $req; public function __construct($req) { $this->req = $req; } public function handle() { Log::info($this->$req); } }
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。