CasperSecurity
<x-app-layout>
<x-slot name="header">
<div class="page-title d-flex flex-column me-5">
<!--begin::Title-->
@if(session('session_dashboard') == 1)
<h1 class="d-flex flex-column text-dark fw-bolder fs-2 mb-0">Dashboard</h1>
{{--<h1 class="d-flex flex-column text-dark fw-bolder fs-2 mb-0">Sales Dashboard</h1>--}}
@elseif(session('session_dashboard') == 2)
<h1 class="d-flex flex-column text-dark fw-bolder fs-2 mb-0">Client Dashboard</h1>
@elseif(session('session_dashboard') == 3)
<h1 class="d-flex flex-column text-dark fw-bolder fs-2 mb-0">Projects Dashboard</h1>
@else
<h1 class="d-flex flex-column text-dark fw-bolder fs-2 mb-0">Sales Dashboard</h1>
@endif
<!--end::Title-->
<!--begin::Breadcrumb-->
<ul class="breadcrumb breadcrumb-separatorless fw-bold fs-7 pt-1">
<li class="breadcrumb-item text-dark">Dashboard</li>
</ul>
<!--end::Breadcrumb-->
</div>
</x-slot>
<x-slot name="container">
</x-slot>
<x-slot name="externaljs">
</x-slot>
</x-app-layout>