@extends('admin.layouts.admin') {{-- =========== meta Title =================== --}} @section('title') کاربران @endsection {{-- =========== My Css Style =================== --}} @section('style') @endsection {{-- =========== My JavaScript =================== --}} @section('script') @endsection {{-- =========== CONTENT =================== --}} @section('content')

کاربران ( {{ $users->total() }} )


@if(count($users)>0)
@method('delete') @csrf @foreach($users as $key=>$item) @endforeach
ردیف نام و نام خانوادگی شماره همراه سطح کاربری وضعیت جزئیات
{{ $users->firstItem()+$key }} {{ $item->name }} {{ $item->cellphone }} {{ $item->Role->display_name }} {{ $item->is_active==1 ? 'فعال' : 'غیر فعال' }}
{{ $users->render() }}
@else

کاربری برای نمایش موجود نیست
@endif
@include('admin.users.modal') @endsection