@extends('layouts.admin') @section('title', 'Sale Receipt') @section('page-title', 'Sale Receipt') @section('page-subtitle', $sale->reference) @section('content')

CoopFinance NG

Mini Mart - Sales Receipt

www.coopfinance.ng

Receipt No:

{{ $sale->reference }}

Date:

{{ \Carbon\Carbon::parse($sale->sale_date)->format('d M Y H:i') }}

Customer: {{ $sale->customer_name }}
Cashier: {{ $sale->cashier_name }}
@foreach($sale->items as $item) @endforeach
Item Qty Price Total
{{ $item->product_name }} {{ $item->quantity }} ₦{{ number_format($item->unit_price) }} ₦{{ number_format($item->subtotal) }}
TOTAL ₦{{ number_format($sale->total_amount) }}
Payment Method {{ str_replace('_', ' ', $sale->payment_method) }}
@if($sale->payment_method === 'cash')
Amount Tendered ₦{{ number_format($sale->amount_tendered) }}
Change ₦{{ number_format($sale->change_given) }}
@endif

Thank you for your purchase!

Items sold are NOT refundable.

Powered by CoopFinance NG

New Sale Sales History
@endsection