@extends('Admin.layouts.app') @section('title', 'Seeker View') @section('content')
Name
{{ $seeker->name }}
{{ $seeker->email ?? '---' }}
Phone
{{ $seeker->phone ?? '---' }}
Gender
{{ $seeker->gender ?? '---' }}
City
{{ $seeker->city ?? '---' }}
State
{{ $seeker->state ?? '---' }}
Address
{{ $seeker->address ?? '---' }}
National ID / Passport No
{{ $seekerDetails->identifier_num ?? '---' }}
Allergy
{{ $seekerDetails->allergy ?? '---' }}
Medical History
{{ $seekerDetails->medical_history ?? '---' }}
Dental History
{{ $seekerDetails->dental_history ?? '---' }}
| Booking ID | Service | Amount | Status | Date/Time |
|---|---|---|---|---|
| {{ $booking->id }} | {{ $booking->service_name ?? '---' }} | {{ $booking->service_amount ?? $booking->service_price ?? '---' }} | @if($booking->status == 'Pending') Pending @elseif($booking->status == 'Accepted') Accepted @elseif($booking->status == 'Completed') Completed @elseif($booking->status == 'Cancelled') Cancelled @else {{ $booking->status }} @endif | {{ \Carbon\Carbon::parse($booking->created_at)->format('d M, Y h:i A') }} |
| No bookings found for this seeker. | ||||
Disputes coming soon...
| Username | Review | Date | Rating |
|---|---|---|---|
|
|
{{ $review->review ?: 'No review text' }} | {{ \Carbon\Carbon::parse($review->created_at)->format('d/m/Y') }} | {{ $review->rating }} |
| No reviews found. | |||
| Record ID | Last Updated | Action |
|---|---|---|
| {{ $record->id }} | {{ \Carbon\Carbon::parse($record->updated_at)->format('d M, Y h:i A') }} | |
| No records found. | ||
| # | User Name | Service | Type | Loyalty Points | Date |
|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ $point->user_name ?? '---' }} {{ $point->user_last_name ?? '' }} | {{ $point->service_name ?? '---' }} | @if($point->type == 'received') Received @else {{ ucfirst($point->type ?? '---') }} @endif | {{ $point->loyality_point ?? 0 }} | {{ \Carbon\Carbon::parse($point->created_at)->format('d M, Y h:i A') }} |
| No points record found for this seeker. | |||||