@extends('layouts.template') @section('title') VL-POS :: Sales Details @endsection @section('template')

LIST SALES RETURN

@if(Session::has('success'))
{{Session::get('success')}} @php Session::forget('success'); @endphp
@endif @if(Session::has('danger'))
{{Session::get('danger')}} @php Session::forget('danger'); @endphp
@endif
@if(isset($all_sales_return)) @foreach($all_sales_return as $key => $value) @if($value->status == "Due") @else @endif @endforeach @endif
Sl Date Voucher Ref Customer Name Total Paid Status Action
{{ ++$key }} {{ $value->date }} {{ $value->voucher_ref }} {{ $value->customer_name }} {{ $value->memo_total }} {{ $value->advanced_amount }}{{ $value->status }}:{{ $value->memo_total - $value->advanced_amount -$value->discount }}{{ $value->status }} View @if(Auth::user()->role == 'admin')
{{ method_field('DELETE') }} {{ csrf_field() }}
@endif
@endsection