@include('dashboard.layout.css')
@php
$current_user = Auth::user();
if ($current_user) {
$allow_access = DB::table('users')
->join('roles', 'users.role', '=', 'roles.id')
->where('users.id', '=', $current_user->id)
->first();
}
@endphp
@include('dashboard.layout.admin_sidebar')