@extends('app') @section('content')

OcurriĆ³ un error interno en el servidor.

@if('app.debug')

{{get_class($exception)}}

{{$exception->getMessage()}}

    @foreach($exception->getTrace() as $trace)
  1. {{@$trace['file'] ? str_replace(base_path(), '', $trace['file']) : ''}} @if(@$trace['line']) : {{ $trace['line'] }} @elseif(@$trace['function']) {{@$trace['class']}} {{ $trace['function'] }} @else {{ join(' || ', $trace) }} @endif
  2. @endforeach
@endif
@endsection