You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This code not work, and task is not shown at schedule view. At Documentation noone said nothing about imports, and what to do with this code. Maybe some bootstrap.php code missing, but I have not info what to do.
Command php artisan schedule:run shows schedulings, but not at admin panel:
Do not shows schedulings from project/app/Console/Kernel.php, but from project/routes/console.php:
<?php// use Illuminate\Console\Scheduling\Schedule;useIlluminate\Support\Facades\Schedule;
useIlluminate\Foundation\Console\KernelasConsoleKernel;
useIlluminate\Console\Scheduling\ScheduleasCronSchedule;
useIlluminate\Foundation\Inspiring;
useIlluminate\Support\Facades\Artisan;
Artisan::command('inspire', function () {
$this->comment(Inspiring::quote());
})->purpose('Display an inspiring quote')->hourly();
Schedule::command('inspire')->everyFiveSeconds();
Those schedulings is shown by php artisan schedule:run or list. But those commads are not visible at admin panel, like at documentation of this extension.
Saddly documentation not show what to import to class Kernel. Maybe wrong location? Or maybe docker makes, that I have to put this class at another localization?
Ps. I have added to routes/console.php class Kernel like above, but this is not work too.
Ps It is OpenAdmin, but this is only a fork from your extension. Works the same, but not works at all.
The text was updated successfully, but these errors were encountered:
This code not work, and task is not shown at schedule view. At Documentation noone said nothing about imports, and what to do with this code. Maybe some bootstrap.php code missing, but I have not info what to do.
Command php artisan schedule:run shows schedulings, but not at admin panel:
Do not shows schedulings from project/app/Console/Kernel.php, but from project/routes/console.php:
Those schedulings is shown by php artisan schedule:run or list. But those commads are not visible at admin panel, like at documentation of this extension.
Saddly documentation not show what to import to class Kernel. Maybe wrong location? Or maybe docker makes, that I have to put this class at another localization?
Ps. I have added to routes/console.php class Kernel like above, but this is not work too.
Ps It is OpenAdmin, but this is only a fork from your extension. Works the same, but not works at all.
The text was updated successfully, but these errors were encountered: