You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
428 B
16 lines
428 B
@extends('errors.layout')
|
|
|
|
@php
|
|
$error_number = 500;
|
|
@endphp
|
|
|
|
@section('title')
|
|
It's not you, it's me.
|
|
@endsection
|
|
|
|
@section('description')
|
|
@php
|
|
$default_error_message = "An internal server error has occurred. If the error persists please contact the development team.";
|
|
@endphp
|
|
{!! isset($exception)? ($exception->getMessage()?e($exception->getMessage()):$default_error_message): $default_error_message !!}
|
|
@endsection
|
|
|