@extends('layouts.web', ['nav' => true, 'banner' => false, 'footer' => true, 'cookie' => false, 'setting' => false, 'title' => true, 'title' => __('404 - Page Not Found')]) @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') {{-- 404 page --}}

{{ __('404') }}

{{ __('Nothing found') }}

{{ __('The page you are looking for is not available!')}}

{{ __('Try something different or go back to the homepage.') }}

@endsection