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

LIST PURCHASE 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_purchase_return)) @foreach($all_purchase_return as $key => $value) @endforeach @endif
Sl Date Voucher Ref Supplier Total Paid Action
{{ ++$key }} {{ $value->date }} {{ $value->voucher_ref }} {{ $value->sup_name }} {{ $value->memo_total }} {{ $value->advanced_amount }} View @if(Auth::user()->role == 'admin')
{{ method_field('DELETE') }} {{ csrf_field() }}
@endif
@endsection