@php($layout = auth('admin')->check() ? 'layouts.admin' : (auth('customer')->check() ? 'layouts.customer' : 'layouts.public')) @extends($layout) @section('title', 'Access Denied') @section('content')

You have no access here

{{ trim($exception->getMessage()) !== '' ? $exception->getMessage() : 'You do not have access to this feature.' }}

403
@if(auth('customer')->check()) Go to dashboard @endif Go back
@endsection