reportError($exception); parent::report($exception); } /** * Render an exception into an HTTP response. * * @param \Illuminate\Http\Request $request * @param \Throwable $exception * @return \Symfony\Component\HttpFoundation\Response * * @throws \Throwable */ public function render($request, Throwable $exception) { return parent::render($request, $exception); } private function reportError(Throwable $e){ try { $url = config('stag.backendUrl') . '/dev/reportPhpError'; $headers['secret'] = 'superman'; Http::asForm() ->withHeaders($headers) ->post($url, [ 'data'=>'FE2: '.$e->getMessage(), 'secret' => 'superman' ]) ->json(); }catch(\Exception $e){ //do nothing } } }