@inject('settingService', 'App\Services\SettingService') @php $appName = $settingService->get('app_name', 'LPM Esencial'); $primaryColor = $settingService->get('primary_color', '#f97316'); $deliveryCssVersion = @filemtime(public_path('assets/css/delivery2.css')) ?: '2.0.3'; $delivery3CssVersion = @filemtime(public_path('assets/css/delivery3.css')) ?: '3.0.0'; @endphp @yield('title',$appName)
{{ mb_strtoupper($appName) }}

@yield('heading','Inicio')

{{ strtoupper(substr(auth()->user()->name,0,1)) }}
{{ auth()->user()->name }}{{ auth()->user()->role->label() }}
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
Revisa la información:
@endif @yield('content')