@extends('layouts.master') @section('title', 'Agent Payments - HomesInKerala') @section('content')

Payments

View your subscription payment history.

@include('frontend.agent.partials.nav')
@forelse($payments as $payment) @empty @endforelse
Description Gateway Amount Status Date
{{ $payment->description }} {{ Str::headline($payment->gateway) }} {{ $payment->currency }} {{ number_format((float) $payment->amount, 2) }} {{ Str::headline($payment->status) }} {{ $payment->created_at->format('d M Y') }}
No payments found.
{{ $payments->links() }}
@endsection