@extends('layouts.app') @section('title', 'Receipt: ' . $posSale->receipt_number) @section('content')
{{ $posSale->created_at->format('d M Y, H:i:s') }}
| Product | Qty | Price | Total |
|---|---|---|---|
|
{{ $item->product_name }} {{ $item->sku }} |
{{ $item->quantity }} | RM {{ number_format($item->unit_price, 2) }} | RM {{ number_format($item->line_total, 2) }} |
Location
{{ $posSale->warehouse->name ?? '-' }}
Cashier
{{ $posSale->cashier->name ?? '-' }}
Payment Method
{{ ucfirst(str_replace('_', ' ', $posSale->payment_method)) }}
Session
#{{ $posSale->session->id }}
{{ $posSale->customer_name }}
@if($posSale->customer_phone){{ $posSale->customer_phone }}
@endifWalk-in customer
@endif{{ $posSale->notes }}