@extends('layouts.app') @section('title', 'My Account') @section('content')
View your billings and payment history
Name: {{ Auth::user()->name }}
Email: {{ Auth::user()->email }}
Phone: {{ Auth::user()->phone ?? 'Not provided' }}
Account Status: Active
| Date | Billing Period | Amount | Method | Status |
|---|---|---|---|---|
| {{ $payment->created_at->format('M d, Y') }} | {{ $payment->billing->billing_month ?? 'N/A' }} | ${{ number_format($payment->amount, 2) }} | {{ ucfirst($payment->payment_method) }} | @if($payment->status === 'completed') Completed @elseif($payment->status === 'pending') Pending @else {{ ucfirst($payment->status) }} @endif |
No payments recorded yet.
@endifFor detailed billing information, please contact support.
@elseNo billings available yet.
@endif