@extends('layouts.main') @section('title', 'Subscription Plans Management') @section('styles') @endsection @section('content')

Subscription Plans Management

Manage all subscription plans
Add New Plan
@if(session('success')) @endif @if(session('error')) @endif
@if($subscriptions->count() > 0) @foreach($subscriptions as $index => $subscription) @endforeach
# Title Price Max Users Pipeline Details Data Volume Pipeline Hours Frequency Status Actions
{{ $index + 1 }}
{{ $subscription->title }} @if($subscription->deleted_at) Deleted @endif
${{ number_format($subscription->price, 2) }} /{{ strtolower($subscription->frequency_label) }}
{{ $subscription->user_limit_display }}
@if($subscription->pipeline_count)
Count: {{ number_format($subscription->pipeline_count) }}
@endif @if($subscription->pipeline_runs)
Runs: {{ number_format($subscription->pipeline_runs) }}
@endif @if($subscription->pipeline_frequency)
{{ $subscription->pipeline_frequency_label }}
@endif
@if($subscription->data_volume_processed) {{ number_format($subscription->data_volume_processed) }} GB @else Not Set @endif @if($subscription->included_monthly_pipeline_hours) {{ number_format($subscription->included_monthly_pipeline_hours) }}h @else Not Set @endif {{ $subscription->frequency_label }} @if($subscription->status == 1) {{ $subscription->status_label }} @else {{ $subscription->status_label }} @endif
@if(!$subscription->deleted_at)
@csrf @method('DELETE')
@else
@csrf
@csrf @method('DELETE')
@endif
@else
No Subscription Plans Found

Create your first subscription plan to get started.

Add New Plan
@endif
@endsection @section('scripts') @endsection