@include('frontend.layouts.patient-sidebar')

Payments Overview

Payment History

Test Name
Date & Time
Status
Type
Action
@if ($appointments->isEmpty())

No appointments found.

@else
@foreach ($appointments as $appointment)
{{ $appointment->test_names }}
{{ \Carbon\Carbon::parse($appointment->appointment_date)->format('F j') }} - {{ \Carbon\Carbon::parse($appointment->appointment_time)->format('h:i A') }}
{{--
₱{{ number_format($appointment->amount, 2) }}
--}}
{{ $appointment->payment_status }}
{{ $appointment->test_type }}
@if ($appointment->payment_status == 'Unpaid') @else @endif
@endforeach
@endif
{{--
--}}