@extends('layouts.app') @section('title','Payments') @section('page_title','Payments') @section('content') @if(session('success'))
{{ session('success') }}
@endif @forelse($payments as $payment) @empty @endforelse
Project Payment Amount Due Date Paid Date Mode Status Action
{{ $payment->project->project_name ?? '-' }} {{ $payment->payment_title }} {{ $payment->project->currency ?? '' }} {{ $payment->amount }} {{ $payment->due_date }} {{ $payment->paid_date }} {{ $payment->payment_mode }}
@csrf
View Project
No payments found.
@endsection