@lang('purchase.ref_no'): #{{ $sell_transfer->ref_no }}
@lang('messages.date'): {{ @format_date($sell_transfer->transaction_date) }}
Supplier NAme: {{ ($sell_transfer->name) }}

@php $total = 0.00; @endphp @foreach($products as $value) @endforeach
# @lang('sale.product') @lang('sale.qty') @lang('sale.unit_price') @lang('sale.subtotal')
{{ $loop->iteration }} {{ $value->name }} {{ $value->quantity }} {{ $value->unit_price }} {{ ( $value->quantity * $value->unit_price) }}

total purchase return: {{ $sell_transfer->final_total }}
@lang('purchase.additional_notes'):

@if($sell_transfer->additional_notes) {{ $sell_transfer->additional_notes }} @else -- @endif