@extends('layouts/pos_layout') @section('title', '| '.$moduleTitle) @section('content')
{{ $moduleTitle }}
Bill No : SLS{{$data->sales_return_bill_no}} Bill Date : {{date('d-m-Y', strtotime($data->sales_return_date))}}
Total Quantity : {{$data->total_quantity}} Total Amount : {{number_format($data->adjustment_amount, 2)}}


@php $no=0; $t_qty = $t_amount = 0; $BranchID = 0; @endphp @foreach($data->saleReturnDetails as $details) @php $BranchID = $details->branch_id; @endphp @php $t_qty += 1; $t_amount += $details->amount; @endphp @endforeach
SL No. Product Name Barcode PID Number Product Information
Qty Unit Price Total Price
{{++$no}} {{$details->product->name}} @if(isset($details->product->barcode)) {{ $details->product->barcode }} @endif @if(isset($details->barcode->barcode_serial)) {{ $details->barcode->barcode_serial }} @else N/A @endif {{ $details->quantity }} {{number_format($details->amount, 2)}} {{number_format($details->quantity*$details->amount, 2)}}
Total {{$t_qty}} Total {{number_format($t_amount, 2)}}
@if($isTransactionApproveStatus == 'true') @php $supervisors = \App\Service\Pos_Approve_Service::getModuleTypeDataView($data->id,'pos_sale_returns') @endphp @include('pos.config.reporting_boss.pos_approved') @endif
@endsection