@extends('admin.layouts.master') @section('title', 'Blocked Users') @section('content')

{{ __('Blocked User List') }}

{{ __('Blocked User List') }}

@foreach ($users as $id => $user) @endforeach
# Image Name Email Phone Status Actions
{{ ++$id }} {{ $user->name }} {{ $user->email }} {{ $user->phone_no }} @if ($user->status == 'approved') Approved @elseif ($user->status == 'pending') Pending @elseif ($user->status == 'blocked') Blocked @endif
@csrf
@endsection