@extends('layouts.sidebar')
@section('title', 'Nomadic-Manage Users')
@section('content')
Manage Users
| Name |
Email |
Role |
Home City |
|
@if(!empty($data) && $data->count())
@foreach($data as $dt)
| {{$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 |
|
@endforeach
@else
| No record found |
@endif
|
|
@endsection
@section('footer_scripts')
@endsection