MOON
Server: Apache
System: Linux e2e-78-16.ssdcloudindia.net 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
User: imensosw (1005)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/imensosw/www/mpl.imenso.co/resources/views/errors/404.blade.php
@extends('front-end/layouts/full-page')

@section('page_title')
    MusicPlanet Live - 404
@stop

@section('page_descr')

@stop

@php
    // Keep track of 404 pages (so we know what to fix)
    $logFilePath = storage_path('logs/404.log');
    $currentRoute = request()->url();

    if (! file_exists($logFilePath)) {
        $contents = '';
        file_put_contents($logFilePath, $contents);
    } else {
        $contents = file_get_contents($logFilePath);
    }

    $contents = $contents . PHP_EOL . $currentRoute;

    if (! \Illuminate\Support\Str::contains($currentRoute, 'image/uploads')) {
        file_put_contents($logFilePath, $contents);
    }
@endphp

@section('content')
	<div class="four-oh-four" style="background-image: url('{{ url('images/background-404.png') }}')">
		<div class="constrainer">
			<div class="content-holder">
				<img src="{{ url('images/mic-check.png') }}" class="mic-check" alt="Mic Check">
				<div class="text-holder">
					<h1 class="heading">This page cannot be found</h1>
					<p>Sorry, the page that you are looking for does not exist.</p>
					<div class="btn-row">
						<a href="{{ url('/') }}" class="btn primary wide">Go Back Home</a>
					</div>
				</div>
			</div>
		</div>
	</div>
@stop