From f68e4cb3e6b184541aea19adaa8a8d64dcdc9720 Mon Sep 17 00:00:00 2001 From: Frankie B Date: Fri, 12 Jan 2024 18:57:10 +0000 Subject: Add custom error pages, pixel images, etc (also improve computers) --- resources/views/errors/404.blade.php | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 resources/views/errors/404.blade.php (limited to 'resources/views/errors/404.blade.php') diff --git a/resources/views/errors/404.blade.php b/resources/views/errors/404.blade.php new file mode 100644 index 0000000..79ca498 --- /dev/null +++ b/resources/views/errors/404.blade.php @@ -0,0 +1,30 @@ +@extends('errors::minimal') +@php +abort(503) +@endphp +@section('content') + +

Error 404 | Page not found!

+
+

The page /{{ Request::path() }}/ doesn't exist! Did you mean...

+ +

Still haven't found what you were looking for or believe this is a server error? Contact the webmaster!

+
+

Diagnostic Info

+
+ + Server:  {{ gethostname() }}
+ Your IP: {{ Request::ip() }}
+ Epoch:   {{ now()->timestamp }}
+ Agent:   Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:122.0) Gecko/20100101 Firefox/122.0
+
+
+

© floppydisk 2021-2024

+@endsection -- cgit v1.2.3-54-g00ecf