@extends('layouts.mobile') @section('title', 'Bill Payments') @section('content')

This Month

₦{{ number_format($monthlySpending ?? 0, 2) }}

Bill payments

Transactions

{{ $monthlyTransactions ?? 0 }}

This month

Services

Quick Actions

@if($lastTransaction) @endif

Bill History

View all bill payments

@if($recentBillPayments && $recentBillPayments->count() > 0)

Recent Bills

View All
@foreach($recentBillPayments as $transaction)
@if($transaction->category === 'airtime_purchase') @elseif($transaction->category === 'data_purchase') @elseif($transaction->category === 'bill_payment') @else @endif

{{ $transaction->description }}

{{ $transaction->created_at->format('M d, Y H:i') }}

-₦{{ number_format($transaction->amount, 2) }}

{{ ucfirst($transaction->status) }}
@endforeach
@endif

Supported Networks

MTN

Available

GLO

Available

ATL

Available

9MOB

Available

@push('scripts') @endpush @endsection