@extends('layouts.master-without-nav') @section('title') @lang('translation.Error_404') @endsection @section('body') @endsection @section('content')

404!

Sorry, page not found

@php $role = auth()->user()->role->name ?? 'Guest'; @endphp @switch($role) @case('Admin') Looks like you're lost, Admin! Let's get you back home. @break @case('Manager') Manager, the page you are looking for isn't available. @break @case('Staff') Oops! Staff area not found. @break @default This page doesn't exist. @endswitch

@php switch ($role) { case 'Admin': $dashboardUrl = route('admin.dashboard'); break; case 'Manager': $dashboardUrl = route('manager.dashboard'); break; case 'Staff': $dashboardUrl = route('staff.dashboard'); break; default: $dashboardUrl = route('home'); break; } @endphp Back to Dashboard
@endsection