@extends('layouts.web', ['nav' => true, 'banner' => false, 'footer' => true, 'cookie' => false, 'setting' => false, 'title' => true, 'title' => __('500 - Internal Server Error')]) @php // Page content use Illuminate\Support\Facades\DB; use App\Setting; $supportPage = DB::table('pages')->where('page_name', 'footer')->orWhere('page_name', 'contact')->get(); $config = DB::table('config')->get(); $settings = Setting::where('status', 1)->first(); @endphp @section('content') {{-- Server error page --}}

{{ __('500') }}

{{ __('Internal Server Error') }}

@endsection