@extends('layouts.app') @section('title', 'Dish Payments - ISP ERP System') @section('content')

Dish Payments

Add Payment
@if(session('success'))
{{ session('success') }}
@endif @if($payments->count() > 0) @foreach($payments as $payment) @endforeach
Customer Billing Month Paid Amount Payment Method Date Actions
{{ $payment->billing->connection->customer->customer_name }} {{ $payment->billing->billing_month->format('M Y') }} {{ number_format($payment->paid_amount, 2) }} {{ ucfirst($payment->payment_method) }} {{ $payment->payment_date->format('M d, Y') }} View Edit
@csrf @method('DELETE')
{{ $payments->links() }} @endif
@endsection