@extends('layouts.master') @section('title', 'Sale Return Invoice') @push('style') @endpush @section('content')

{{ optional($saleReturn->company)->name }}

{{ optional($saleReturn->company)->head_office }}
Email: {{ optional($saleReturn->company)->email }}
Phone: {{ optional($saleReturn->company)->phone_number }}
Return For
{{ optional($saleReturn->customer)->name }}
{{ optional($saleReturn->customer)->address }} {{ optional($saleReturn->customer)->mobile }} {{ optional($saleReturn->customer)->email }}
Invoice No: {{ $saleReturn->invoice_no }}
Date : {{ $saleReturn->date }}

Product Return Information

@foreach($saleReturn->return_details ?? [] as $detail) @endforeach
Sl Product Name Unit Condition Quantity Price Amount
{{ $loop->iteration }} {{ optional($detail->product)->name }} {{ optional(optional($detail->product)->unit)->name }} {{ $detail->product_type }} {{ $detail->quantity }} {{ $detail->price }} {{ $detail->subtotal }}
Total {{ $saleReturn->return_details->sum('quantity') }} {{ $saleReturn->return_details->sum('subtotal') }}

Product Exchange Information

@foreach($saleReturn->exchange_details ?? [] as $detail) @endforeach
Sl Product Name Unit Quantity Price Amount
{{ $loop->iteration }} {{ optional($detail->product)->name }} {{ optional(optional($detail->product)->unit)->name }} {{ $detail->quantity }} {{ $detail->price }} {{ $detail->subtotal }}
{{ $saleReturn->total_payable }}
{{ $saleReturn->total_paid_amount }}
{{ $saleReturn->total_due_amount }}
Customer
{{ optional($saleReturn->customer)->name }}

Signature and Date
Issued By
{{ optional($saleReturn->company)->name }}

Signature and Date
@endsection @section('js') {{-- --}} @stop