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

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

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

Product Return Information

@foreach($purchaseReturn->return_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 }}

Product Exchange Information

@foreach($purchaseReturn->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 }}
{{ $purchaseReturn->total_payable }}
{{ $purchaseReturn->total_paid_amount }}
{{ $purchaseReturn->total_due_amount }}
Supplier
{{ optional($purchaseReturn->supplier)->name }}

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

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