@extends('layouts.app') @section('styles') @endsection @section('content') @include('partials.home_menu.menu')

clipboard Invoice - #{{$invoice->reference}}({{$invoice->status}})


Created {{\Carbon\Carbon::parse($invoice->created_at)->format('d M Y')}}

View Sent Invoice


Invoice
@if($invoice->status == 'Sent')

Add Billing Address




@if($invoice->payment_method == 'EcoCash' || $invoice->payment_method == 'TeleCash' || $invoice->payment_method == 'OneMoney' || $invoice->payment_method == 'Visa' )

Make Payment


Total: USD $ {{number_format($invoice->total,2,',','.')}}
Total: RTGS $ {{number_format($invoice->total * 125,2,',','.')}}

(NB: Amount does not include transfer charges.)



Processing...Pay via Ecocash / OneMoney / TeleCash Processing...Pay via Visa / MasterCard

(You will be redirected to Paynow to complete your payment.)

@elseif($invoice->payment_method == 'Medical Aid')

Accept Payment


Total: $ {{number_format($invoice->total,2,',','.')}}


Processing...Accept Invoice
@elseif($invoice->payment_method == 'Visa')

Accept Payment


Total: $ {{number_format($invoice->total,2,',','.')}}


@else

Accept Payment


Total: $ {{number_format($invoice->total,2,',','.')}}


Processing...Accept and Pay On Delivery
@endif @endif


@endsection