@extends('layouts.simple.master')
@section('title', 'Users List')
@section('css')
@endsection
@section('style')
@endsection
@section('breadcrumb-title')
Users List
@endsection
@section('breadcrumb-items')
User Management
Users List
@endsection
@section('content')
Id |
Name |
Email |
Actions |
@if (count($users) > 0)
@foreach ($users as $index => $user)
{{ ++$index }} |
{{ $user->name }} |
{{ $user->email }} |
-
@if ($user->user_type != 1)
@endif
|
@endforeach
@endif
{!! $users->links() !!}
@endsection
@section('script')
@endsection