@extends('users.admin.layouts.master') @section('styles') @endsection @section('content')

Payments List

#Page-ID
@if(session()->has('success')) @endif

Payments List

@foreach($payments as $payment) @endforeach
Patient Refereed By Doctor Sub Total Taxes Total Amount Received Amount To Pay Actions Delete
{{$payment->patient->first_name}} {{$payment->doctor->first_name}} {{$payment->sub_total}} {{$payment->taxes}} {{$payment->total}} {{$payment->amount_received}} {{$payment->amount_to_pay}}
@method('DELETE') @csrf
@endsection @section('scripts') @endsection