@extends('backend.layouts.master') @section('title', "User Management Index") @section('css') @endsection @section('content')

User Management

{{-- --}} {{-- --}}
@foreach($users as $user)
{{ucwords(@$user->name)}}

{{@$user->email}}

{{ucwords(@$user->user_type)}}

User Role

{{($user->contact == null) ? 'Not Added':@$user->contact}}

Contact

@endforeach {{--
--}} {{--
--}} {{-- Load More --}} {{--
--}} {{--
--}}
{{csrf_field()}}
@include('backend.user.modal.add') @include('backend.user.modal.user-role') @endsection @section('js') @endsection