@extends('layouts.master') @section('title') {{ __('sentence.Billing List') }} @endsection @section('content') s
| ID | {{ __('sentence.Patient') }} | {{ __('sentence.Date') }} | {{ __('sentence.Amount') }} - Due Balance | {{ __('sentence.Status') }} | {{ __('sentence.Payment Method') }} | {{ __('sentence.Actions') }} |
|---|---|---|---|---|---|---|
| {{ $invoice->id }} | {{ $invoice->User->name }} | {{ $invoice->created_at->format('d M Y') }} | {{ $invoice->total_with_tax }} {{ App\Setting::get_option('currency') }} @if($invoice->payment_status == 'Unpaid' OR $invoice->payment_status == 'Partially Paid') @endif | @if($invoice->payment_status == 'Unpaid') @elseif($invoice->payment_status == 'Paid') @elseif($invoice->payment_status == 'Partially Paid') @else @endif |