{{-- @dump($sale->toArray() ) --}} {{-- @dump($company_info->toArray()) --}}

{{ $company_info->company_name ?? '' }}

{{ $company_info->company_address ?? '' }} | {{ $company_info->company_phones ?? '' }} | {{ $company_info->company_email ?? '' }} | {{ $company_info->company_website_url ?? '' }} | {{ $company_info->branch->branch_name ?? '' }}


ITEMS SOLD

@php $products_array = !empty($sale->products) ? json_decode($sale->products) : null; @endphp @if (!empty($products_array)) @foreach ($products_array as $key => $product) @endforeach @endif @if (is_sale_notes_enabled_on_pos()) @if (!empty($sale->sale_notes)) @endif @endif {{-- Studio Booking Details --}} @if (is_booking_enabled_on_pos()) {{-- --}} @if (!empty($sale->booking_details)) @endif @endif {{-- End of studio booking details --}}

Item

Price

Qty

Sub Total

{{ get_product_name($product->product_id ?? '') }}

{{ $product->price ?? '' }}

{{ $product->quantity ?? '' }}

{{ $product->subtotal ?? '' }}

Client

{{ get_client_name($sale->client_id ?? '') }}

Sold On

{{ short_date($sale->sale_date ?? '') }}

Discount

{{ $sale->discount ?? '' }}

Total

{{ $sale->total_amount ?? '' }}

Amount Paid

{{ $sale->amount_paid_by_client ?? '' }}

Balance

{{ $sale->balance_due_to_client ?? '' }}

Payment Method

{{ get_payment_method($sale->payment_method ?? '') }}

Served By

{{ get_user_fullname_temporary($sale->created_by ?? '') }}

Grand Total

{{ $sale->final_total ?? '' }}

Sale Notes

{{ $sale->sale_notes ?? '' }}

Booking Details

Booking Date

{{ long_date($sale->booking_date ?? '') }}

Booking Time

{{ $sale->booking_time ?? '' }}

Booking Status

{!! get_booking_status($sale->booking_status) !!}

Booking Location

{{ $sale->job_location ?? '' }}

Booking Notes

{{ $sale->booking_details ?? '' }}