@extends('layouts.app') @section('title', 'Supplier Payments') @section('content')

Supplier Payments

Record Payment

Filters

@forelse($payments as $payment) @empty @endforelse
Payment # Credit # Supplier Payment Date Amount Method Reference Processed By Actions
{{ $payment->payment_number }} {{ $payment->supplierCredit->credit_number }}
{{ $payment->supplier->company_name }}
@if($payment->supplier->contact_person)
{{ $payment->supplier->contact_person }}
@endif
{{ $payment->payment_date->format('M d, Y') }} LKR {{ number_format($payment->amount, 2) }} {{ $payment->payment_method->label() }} {{ $payment->reference_number ?? '-' }}
{{ $payment->processedBy->name }}
{{ $payment->created_at->format('M d, Y H:i') }}
View

No supplier payments found.

@if($payments->hasPages())
{{ $payments->links() }}
@endif
@endsection