$ apimodel変数がnullまたはその他のエラーの場合、ユーザーをリダイレクトしたいので、エラーを処理しようとしています。 APIとの認証エラーなどここに私のコードです:私の関数でtry/catch doesntが動作するLaravel
$integration = Integration::where('name', 'lightspeed')->first();
$apimodel = Apimodel::where('user_id', Auth::user()->id)
->where('integration_id', $integration->id)
->where('active', true)
->first();
try {
$api = new WebshopappApiClient(
$apimodel->data01,
$apimodel->api_key,
$apimodel->api_secret,
$apimodel->data02);
} catch (ErrorException $e) {
die($e->getMessage());
}
return view('integrations.lightspeed.index', compact('api'));
あなたが質問をするのを忘れをキャッチ示唆しています。あなたはまた、「doesntの仕事」が何を意味するかを説明しませんでした。 – zerkms
WebshopappApiClientクラスは、失敗すると例外をスローしますか? – Qirel
@Qirelはい、失敗すると例外がスローされます – Stackingcoder