@extends('layouts.app') @section('title', 'Subscription Plans') @section('page-title', 'Subscription Plans') @section('content')
@foreach($plans as $plan) @endforeach
NameMonthlyTermlyAnnuallyMax StaffCommissionStatus
{{ $plan->name }} ₦{{ number_format($plan->price_monthly, 0) }} ₦{{ number_format($plan->price_termly, 0) }} ₦{{ number_format($plan->price_annually, 0) }} {{ $plan->max_staff == 999 ? 'Unlimited' : $plan->max_staff }} {{ $plan->commission_rate }}% @if($plan->is_active) Active @else Inactive @endif
@csrf @method('DELETE')
@endsection