@extends('layouts.app') @section('title', 'エラーが発生しました') @section('content')

エラーが発生しました

{{ $message ?? '予期しないエラーが発生しました。' }}

@if(isset($exception) && method_exists($exception, 'getErrorCode'))

エラーコード: {{ $exception->getErrorCode() }}

@endif
ダッシュボードに戻る
@if(config('app.debug') && isset($exception))

デバッグ情報

ファイル: {{ $exception->getFile() }}

行: {{ $exception->getLine() }}

@if(method_exists($exception, 'getContext') && !empty($exception->getContext()))

コンテキスト:

{{ json_encode($exception->getContext(), JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) }}
@endif
@endif
@endsection