Как настроить URL-адрес github webhook в Laravel Notification?
Я установил guzzle для получения данных из URL-адреса github webhook.
Route::get('iaccs-hook',function(){
$client = new \GuzzleHttp\Client();
$response = $client->request('GET', 'https://api.github.com/repos/arnold-unified/learning-laravel');
$data = json_decode($response->getBody()->getContents(),true);
if(auth()->user()->hasRole('admin')){
$this->notify(new \App\Notifications\WebhookNotification($data));
}
});
Но как автоматически запустить этот маршрут, чтобы иметьуведомление в реальном времени?