@extends('backend.layouts.master') @section('section-title', 'Product') @section('page-title', 'Pay Supplier') @if (check_permission('payment.pay-supplier-store')) @section('action-button') Pay Supplier @endsection @endif @section('content')
Reset Print
@forelse($payment as $data) @php // dd($data->transaction->id); @endphp {{-- delete modal --}} @csrf @empty @endforelse
# Date Wallet Type Pay Type Amount Discount Amount Action
{{ $loop->index + 1 }} {{ date('d-m-Y',strtotime($data->date)) }} {{ $data->wallet_type }} {{ $data->pay_type }} ({{ $data->transaction?->supplier?->name }}) {{ $data->amount }} @if($data->discount_amount == null ) 0.00 @endif @if($data->discount_amount != null) {{ $data->discount_amount }} @endif
No Data Available
@include('backend.pages.payment.supplier_model') @endsection @push('js') {{-- Payment Options --}} @endpush