@php
header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
@endphp
@include('elements.admin_default_header_assets')
@switch(Auth::user()->role_id)
@case(1)
@include('elements.admin_sidebar')
@break
@case(2)
@include('elements.user_sidebar')
@break
@default
@endswitch
@include('elements.admin_default_footer_assets')