@extends('layouts.tenant.master') @section('title', 'User Menu') @section('css') @endsection @section('style') @endsection @section('breadcrumb-title')

Deleted User(s) List

@endsection @section('breadcrumb-items') @endsection @section('content')
@include('partial.message')
{{--
Best Selling Product
--}} Create User Users List   Refresh
@forelse ($users as $key => $user) @empty @endforelse
# Type Username First Name Last Name Email Company Name Status Created On Actions
{{ ++$key }} @if (!empty($user->getRoleNames())) @foreach ($user->getRoleNames() as $v) @endforeach @else @endif {{ $user->username ?? 'N/A' }} {{ $user->first_name ?? 'N/A' }} {{ $user->last_name ?? 'N/A' }} {{ $user->company_name ?? 'N/A' }} {{ ucfirst($user->status) ?? 'N/A' }} {{ $user->created_at->format('d-m-Y') ?? 'N/A' }} {{-- Restore --}} Restore
--- No Data Found ---
# Type Username First Name Last Name Company Name Status Created On Actions
@endsection @section('script') @if (session('success')) @elseif(session('error')) @endif @endsection