У меня общий хост и я хочу запустить свое расписание. но я не знаю, как установить адрес с моей cpanel.
это мой график:
<?php
namespace App\Console;
use App\Jobs\SendOrdersResultNotification;
use App\Order;
use App\RequestForBarber;
use Carbon\Carbon;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
protected $commands = [
'\App\Console\Commands\GetBarbers',
];
protected function schedule(Schedule $schedule)
{
$schedule->call(function (){
$requests=RequestForBarber::where('flag','=',1)->get();
foreach ($requests as $request){
RequestForBarber::destroy($request->id);
}
})->hourly();
}
protected function commands()
{
$this->load(__DIR__.'/Commands');
require base_path('routes/console.php');
}
}
https://laravel.com/docs/5.6/scheduling
* * * * * cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1
В зависимости от вышеприведенной документации я не знаю, как установить cron внутри cpanel.
введите описание изображения здесь