@extends('layouts.user') @section('content')
| Invoice No | Created At | Method | Paid Date | Status | Amount | Link | ||
|---|---|---|---|---|---|---|---|---|
| #{{ $row->invoice_no }} | {{ !empty($row->created) ? date('d F, Y', strtotime($row->created)) : '' }} | {{ !empty($row->method->name) ? $row->method->name : '' }} | {{ !empty($row->payment_date) ? date('d F, Y', strtotime($row->payment_date)) : '' }} |
{{ $row->email }}
|
@if ($row->status == 'pending') {{ strFilter($row->status) }} @elseif($row->status == 'unpaid') {{ strFilter($row->status) }} @elseif($row->status == 'delete') {{ strFilter($row->status) }} @else {{ strFilter($row->status) }} @endif | {{ sprintf("$%0.2f", $row->grand_total) }} | View | |
| Total | {{ sprintf("$%0.2f", $allAmount) }} | |||||||