@extends('layouts.default') @section('content') @include('select2') @include('modal')
Sale Advance Receiving List
 
{{-- Filters --}}
 
@forelse($records as $row) @empty @endforelse
S.No RV No RV Date Customer SO No SO Date Payment Type Amount Status Action
{{ $counter++ }} {{ strtoupper($row->rv_no) }} {{ CommonHelper::changeDateFormat($row->rv_date) }} {{ CommonHelper::byers_name($row->buyers_id)->name ?? '-' }} {{ strtoupper($row->so_no) }} {{ CommonHelper::changeDateFormat($row->so_date) }} {{ $row->payment_type == 1 ? 'Bank' : 'Cash' }} {{ number_format($row->advance_amount, 2) }} @if($row->rv_status == 2) Approved @else Pending @endif
No records found.
Total {{ number_format($total, 2) }}
@endsection