@extends('layouts.master') @section('content')

Welcome, {{ $user->system_user_username ?? 'User' }}!

{{ $user->roles->first()->name ?? 'Staff Member' }}

Today's Date

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

{{ now()->format('l') }}
Current Time

{{ now()->format('h:i A') }}

{{ config('app.timezone') }}
Your Role

{{ $user->roles->first()->name ?? 'Staff' }}

Access Level
Getting Started
Navigation Menu

Use the sidebar menu on the left to access the features available to your role. You will only see menu items that you have permission to access.

Your Permissions

Your account has been configured with specific permissions based on your role. If you need access to additional features, please contact your administrator.

@if($user->roles->count() > 0)
Tip: Check the sidebar menu to see all available features for your role.
@endif
@if($user->can('users.view') || $user->can('roles.view') || $user->can('reports.view'))
Quick Actions
@can('users.view') @endcan @can('roles.view') @endcan @can('reports.view') @endcan
@endif
@endsection