@extends('layouts.app') @section('title', 'Payment Gateways Report') @section('page-title', 'Payment Gateways Report') @section('breadcrumb', 'Reports / Payment Gateways') @section('content')
@if($gateways->count())
@foreach($gateways as $gateway) @endforeach
Gateway Name Updated By Configuration Type Status Transactions Total Amount
{{ $gateway->name }} {{ $gateway->updated_by }} {{ $gateway->config_type }} {{ $gateway->status }} {{ number_format($gateway->transaction_count) }} ₹{{ number_format($gateway->total_amount ?? 0, 2) }}
@else @endif
@endsection