@extends('layouts.simple.master') @section('title', 'Users List') @section('css') @endsection @section('style') @endsection @section('breadcrumb-title')

Deactivated Users

@endsection @section('breadcrumb-items') @endsection @section('content')
@if(count($users) > 0) @foreach($users as $index=>$user) @endforeach @endif
Id Name Email Actions
{{++$index;}} {{$user->name}} {{$user->email}}
{!! $users->links() !!}
@endsection @section('script') @endsection