@php($layout = auth('admin')->check() ? 'layouts.admin' : (auth('customer')->check() ? 'layouts.customer' : 'layouts.public')) @extends($layout) @section('title', 'Access Denied') @section('content')
{{ trim($exception->getMessage()) !== '' ? $exception->getMessage() : 'You do not have access to this feature.' }}