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

No Record Found

@endif
Id Name Role Action
{{$data->id}} {{$data->name}} {{$data->role}}   
{!! $user_list->links() !!} Total Count : {!! $user_list->total() !!}
@endsection