@extends('admin.layouts.app') @section('title', 'Registration Request') @section('content')

Registration Request @if ($pendingCount > 0) {{ $pendingCount }} pending @endif

Customers who registered from the website form. Review, assign package, and set status to Active to approve.

@forelse ($customers as $row) @empty @endforelse
Photo Customer ID Customer Name Contact No Email Id Address Order Instruction Register Date Action
{{ $row->CustomerId }} {{ $row->full_name }} {{ $row->Phone }} {{ $row->EmailId }} {{ $row->Address }} {{ $row->Details }} {{ $row->CreatedDate ? $row->CreatedDate->format('d/m/Y') : '' }} Review & Approve
No pending registration requests.
@endsection @push('scripts') @endpush