@extends('layouts.admin') @section('page', $page) @section('title', getSetting('APPLICATION_NAME') . ' | ' . $page) @section('content')
@if (getSetting('PAYMENT_MODE') == 'disabled') The payment mode is disabled, enable now to accept payments. @endif @foreach ($plans as $key => $value) @endforeach
ID Username Amount Currency Type Gateway Transaction ID Plan Start Date Plan End Date
{{ $value->id }} {{ $value->username }} {{ $value->amount }} {{ $value->currency }} @if($value->type == "monthly") Monthly @else Yearly @endif {{ ucfirst($value->gateway) }} {{ $value->transaction_id }} {{ $value->plan_start_date }} {{ $value->plan_end_date }}
ID Username Amount Currency Type Gateway Transaction ID Plan Start Date Plan End Date
@endsection