cron — как вызвать контроллер (метод) из kernal.php в (планировщик) laravel5

namespace App\Http\Controllers;
use App\Repositories\CampaignpostRepository;
use App\Models\User;
use Illuminate\Exception\Handler;
use DB;
class CampaignpostController extends Controller {

protected $campaign_gestion;
/**
* Store a new user.
*
* @param  Request  $request
* @return Response
*/

public function __construct(
CampaignpostRepository $campaign_gestion)
{
$this->campaign_gestion = $campaign_gestion;
}

public function index()
{
}
protected function schedule(Schedule $schedule)
{
//  $schedule->command('inspire')
//     ->hourly();
$schedule->command('CampaignpostController@index')->everyMinute();
}

мне нужно вызвать CampaignpostController из файла kernal.php
Как я могу позвонить в CampaignpostController.

0

Решение

Попробуй это

protected function schedule(Schedule $schedule)
{
$schedule->call('CampaignpostController@index')->everyMinute();
}
0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]