@extends('layouts.header') @section('title','View Users') @section('content')
View Users
@if ( Session::has('flash_message') ) @endif @if(count($users)>0)
@foreach ($users as $item) @endforeach
Name Email Mobile Status Actions
{{$item->firstname}} {{ $item->email }} {{$item->mobile}} @if($item->status) Active @else Inactive @endif
{{$users->links()}} @else
No Users Found.
@endif
@endsection