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