{{-- table loader --}}
{{__('admin.loading')}}
{{-- table loader --}} {{-- table content --}} @foreach ($users as $user) @endforeach
{{ __('admin.image') }} {{ __('admin.name') }} {{ __('admin.phone') }} {{ __('admin.ban_status') }} {{ __('admin.activation') }} {{ __('admin.control') }}
{{ $user->full_name }} {{ $user->phone }} @if ($user->is_blocked) {{ __('admin.Prohibited') }} {{__('admin.unblock')}} @else {{ __('admin.Unspoken') }} {{__('admin.block')}} @endif @if ($user->is_active) {{ __('admin.activate') }} @else {{ __('admin.dis_activate') }} @endif
{{-- table content --}} {{-- no data found div --}} @if ($users->count() == 0)
{{__('admin.there_are_no_matches_matching')}}
@endif {{-- no data found div --}}
{{-- pagination links div --}} @if ($users->count() > 0 && $users instanceof \Illuminate\Pagination\AbstractPaginator )
{{$users->links('pagination::bootstrap-4')}}
@endif {{-- pagination links div --}}