@php $appSettings = app(\App\Support\AppSettings::class)->all(); $brandName = $appSettings['company_name'] ?? config('app.name'); $brandSubtitle = $appSettings['company_subtitle'] ?? 'Advanced pharmacy management suite'; $logoPath = $appSettings['logo_path'] ?? ''; $faviconPath = $appSettings['favicon_path'] ?? ''; $currency = $appSettings['currency'] ?? config('app.currency', 'USD'); @endphp {{ $title ?? $brandName }} @if ($faviconPath) @endif
Live operations

{{ $heading ?? 'Dashboard' }}

{{ now()->format('l, d M Y') }}

{{ $currency }} Sale
@csrf
@if (session('status'))
{{ session('status') }}
@endif @if ($errors->any())

Please fix the highlighted fields.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{ $slot }}