Добрый всем. У меня есть консольная команды, которая запускаетя по расписанию. Мне нужно создать Job который после выполнения консольной команды писал в лог что задание выполнено или не выполнено.
Команда:
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\DB;
class RefreshDb extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'create:refdb';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Refresh Database';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
$remote = DB::connection('sqlsrv')->select('SELECT TOP (5) * FROM [dbo].[Level]');
foreach ($remote as $record) {
DB::connection('mysql')->insert('insert into level (driver) values (?)', [$record->DriveID]);
}
// $local = DB::connection('sqlite')->select('SELECT * FROM level');
return 0;
}
}
Джоб:
<?php
namespace App\Jobs;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldBeUnique;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
class SendMessegeWhenDbUpdate implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/**
* Create a new job instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
logs()->info("Database Uodate Success");
}
}