@inject('settingService', 'App\Services\SettingService') @php $appName = $settingService->get('app_name', 'LPM Esencial'); $primaryColor = $settingService->get('primary_color', '#f97316'); @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')