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