@extends('layouts.app') @section('PageHeading', 'Payment History') @section('bodyClass', 'user-management') @section('content')
Payment History
{{ $transactions->total() }}

Total

@include('includes.message')
@csrf
@if (request()->get('role')) @endif @if (request()->get('other')) @endif
@if (auth()->user()->role_id != 7) @endif
Payment Date
Invoice Number
Amount
Status
@foreach ($transactions as $transaction)
{{$transaction->payment_date}}
{{$transaction->transaction_reference_id}}
{{$transaction->amount}}
{{$transaction->payment_status}}
@endforeach
{{ $transactions->withQueryString()->links() }}
@endsection @push('scripts') @endpush