@extends('layouts.customer') @section('page-title') My Payments @endsection @section('content')

Invoices & Payments

{{-- View Contract --}} {{-- --}}
@forelse ($payments as $item) @if($item->status == "paid") @else @endif @if($item->status == "unpaid") @endif {{-- --}} @empty @endforelse
No. Name Invoice ID Date Invoice Month Email Payment Status Details
{{ $loop->iteration }} {{ $item->customer_name }} {{ $item->invoice }} {{ date('d-m-Y', strtotime($item->created_at)) }} {{ date('M', strtotime($item->created_at)) }} {{ $item->customer_email }} ${{ $item->payment }}PaidUn-Paid Pay NowVIEW DETAILS

No Payments Available..!!

@endsection @section('js') @endsection