@extends('layouts.master') @section('content')
@if(Session::has('success')) @endif
Users List Add User
@if(count($user_list) > 0) @foreach($user_list as $key => $data) @endforeach @else

No Record Found

@endif
Sr.No Name Role Action
{{$key + 1}} {{$data->name}} {{$data->role}}   
{!! $user_list->links() !!} Total Count : {!! $user_list->total() !!}
@endsection