Paylinker Img

Invoice #{{ $invoice->no_reference }}

Name: {{ $client->name }}
Date: {{ $invoice->created_at->format('d M Y') }}
Email: {{ $client->email }}
Status: {{ $invoice->status == 0 ? 'Unpaid' : 'Paid' }}
@if (isset($client->company)) @endif
Phone: {{ $client->phone_number }}
Address: {{ $client->address }}
Company: {{ $client->company }}

Item Detail

@foreach($items as $item) @endforeach
Item Name Qty Price Discount Total
{{ $item->name }} {{ $item->quantity }} ${{ number_format($item->price, 2) }} {{ $item->discount }}% ${{ $item->quantity * $item->price - ($item->quantity * $item->price * $item->discount / 100) }}
Subtotal : ${{ number_format($invoice->total, 2) }}
Global Discount : {{ number_format($invoice->global_discount, 2) }}%
Tax : {{ number_format($invoice->tax, 2) }}%
Additional Fee : ${{ number_format($invoice->additional_fee, 2) }}
Grand Total : ${{ number_format($invoice->grand_total, 2) }}
Please Pay before {{ $invoice->updated_at->addHours(3)->format('d M Y H:i') }}

Pay Invoice