@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.3'; $delivery31CssVersion = @filemtime(public_path('assets/css/delivery31.css')) ?: '3.1.0'; $delivery32CssVersion = @filemtime(public_path('assets/css/delivery32.css')) ?: '3.2.0'; $appJsVersion = @filemtime(public_path('assets/js/app.js')) ?: '3.2.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')