@extends('layouts.app') @section('title', 'Plans - EKINPAY') @section('page-title', 'Plans Management') @section('content')
@forelse($plans as $plan)

{{ $plan->name }}

@if($plan->is_visible) Visible @else Hidden @endif
Price: {{ $currencySymbol }}{{ number_format($plan->price, 0) }}
Billing: {{ $plan->duration }}
Type: Both PPPoE & Hotspot
Customers: {{ $plan->max_customers }}
Features:
Hotspot Mpesa STK Push PPPoE Mpesa STK Push Multiple Payment Gateways
Created: {{ $plan->created_at->format('M d, Y') }}
@if ($plan->price != 0) @endif
@empty

No plans yet

Create your first plan to get started

@endforelse
@if($plans->hasPages())
{{ $plans->links() }}
@endif
@endsection @push('scripts') @endpush