@extends('layouts.master') @section('title', 'Purchase Return List') @section('page-header') Purchase Return List @stop @push('style') @endpush @section('content')
@include('partials._alert_message')

@yield('page-header')

@foreach($purchaseReturns as $purchaseReturn) @endforeach
SL Date Invoice No Supplier Name Total Amount Paid Amount Due Amount Action
{{ $loop->iteration }} {{ $purchaseReturn->date }} {{ $purchaseReturn->invoice_no }} {{ optional($purchaseReturn->supplier)->name }} {{ $purchaseReturn->total_payable }} {{ $purchaseReturn->total_paid_amount }} {{ $purchaseReturn->total_due_amount }}
@include('partials._user-log', ['data' => $purchaseReturn]) @if(hasPermission("account-purchases.delete", $slugs)) @endif
@if(count($purchaseReturns) <= 0)
No Records Founds Yet!

@else @include('partials._paginate', ['data' => $purchaseReturns]) @endif
@endsection @section('js') @endsection