Initial commit

This commit is contained in:
Kwesi Banson Jnr
2026-07-17 09:58:21 +00:00
commit b71f5c7553
8555 changed files with 725382 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<header class="topbar d-flex justify-content-between align-items-center">
<div class="d-flex align-items-center">
@yield('breadcrumbs')
</div>
<div class="d-flex align-items-center">
<div class="text-secondary me-4" style="font-size: 0.9rem;">
<i class="bi bi-clock me-1"></i> <span id="current-time">--:--:--</span>
</div>
<div class="position-relative me-4">
<i class="bi bi-bell fs-5 text-secondary"></i>
</div>
<div class="d-flex align-items-center">
<div class="rounded-circle bg-light d-flex justify-content-center align-items-center me-2 border text-dark fw-bold" style="width: 32px; height: 32px; font-size: 0.8rem;">
{{ substr(auth()->user()->name ?? 'Admin', 0, 1) }}
</div>
<span class="fw-bold" style="font-size: 0.9rem;">{{ auth()->user()->name ?? 'Admin User' }}</span>
</div>
</div>
</header>