@extends('layouts.master') @section('title', 'Roles') @section('css') @endsection @section('breadcrumb')

Roles

@endsection @section('main_content')
@php $image = Auth::user()->getFirstMedia('image'); @endphp @isset($image) Ticket-star @else
{{ ucfirst(substr(Auth::user()?->first_name ,0, 1))}}
@endisset

Welcome back {{ \Illuminate\Support\Str::title(Auth::user()->first_name ?? '') }} {{ \Illuminate\Support\Str::title(Auth::user()->last_name ?? '') }}!

{{ \App\Models\User::where('system_reserve', false)->count() }}

Total Users

{!! $dataTable->table() !!}
@endsection @section('scripts') {!! $dataTable->scripts() !!} @endsection