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

Users List

@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 }}
  • @if ($user->user_type != 1)
  • @endif
{!! $users->links() !!}
@endsection @section('script') @endsection