@extends('layouts.sidebar') @section('title', 'Nomadic-Manage Users') @section('content')

Manage Users

@if(!empty($data) && $data->count()) @foreach($data as $dt) @endforeach @else @endif
Name Email Role Home City
{{$dt->fname}} {{$dt->lname}} {{$dt->email}} @if($dt->user_role){{$dt->user_role->role_name}}@endif @if(isset($dt->user_location->location)){{$dt->user_location->location}}@endif
No record found
{!! $data->withQueryString()->links('vendor.pagination.bootstrap-5') !!}
@endsection @section('footer_scripts') @endsection