@extends('layouts.app') @section('title', 'エラーが発生しました') @section('content')
{{ $message ?? '予期しないエラーが発生しました。' }}
@if(isset($exception) && method_exists($exception, 'getErrorCode'))エラーコード: {{ $exception->getErrorCode() }}
@endifファイル: {{ $exception->getFile() }}
行: {{ $exception->getLine() }}
@if(method_exists($exception, 'getContext') && !empty($exception->getContext()))コンテキスト:
{{ json_encode($exception->getContext(), JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) }}
@endif