@extends('layouts.master') @section('contain')

Appointments

{{-- --}}
{{--
Data table example
--}}
@php $num = 1; @endphp @foreach ($bookingData as $Bdata) {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} @endforeach
S.No Customer Name Caregiver Name Booking Type Job Title Job Type Action
{{ $num++ }} {{ $Bdata->customer->full_name ?? '-' }} {{ $Bdata->service_provider->full_name ?? '-' }} {{ $Bdata->booking_type ?? '-' }} {{ ucwords(strtolower($Bdata->job_title ?? '-')) }} {{ $Bdata->job_type ?? '-' }}{{ $Bdata->pickup_location }}{{ $Bdata->pickup_lat }} {{ $Bdata->pickup_lng }} {{ $Bdata->dropoff_location }} {{ $Bdata->dropoff_lat }} {{ $Bdata->dropoff_lng }}{!! $Bdata->receiver_details !}{{ $Bdata->description }}{{ $Bdata->vehicle_category_id }} @foreach ($Bdata->tax_and_charges as $key => $value)

{{$key}} : {{$value}}

@endforeach
{{ $Bdata->discounts }} {{ $Bdata->sub_amount }} {{ $Bdata->tax_amount }} {{ $Bdata->charge_amount }} {{ $Bdata->discount_amount }} {{ $Bdata->total_amount }} {{ $Bdata->cancel_amount }} {{ $Bdata->payment_method }} {{ $Bdata->payment_status }}{{ $Bdata->transaction_reference }} {{ $Bdata->transaction_id }}{{ $Bdata->paid_from }}{{ $Bdata->verification_code }}{{ $Bdata->cancel_reason }} {{ $Bdata->redirect_url }} @if ($Bdata->user_type != 'admin') {{-- --}} {{--
@csrf @method('DELETE')
--}} @else Not Modify @endif
@endsection