@extends('layouts.admin') @section('title', 'Plans') @section('content')
{{-- Header --}}

Subscription Plans

আপনার SaaS এর সকল প্ল্যান এখানে ম্যানেজ করুন।

+ Add Plan
{{-- Flash Message --}} @if(session('success'))
{{ session('success') }}
@endif {{-- Filters --}}
Reset
{{-- Table --}}
@forelse($plans as $key => $plan) @empty @endforelse
# Plan Name Price Duration Type Status Actions
{{ $plans->firstItem() + $key }}
{{ $plan->name }}
Created: {{ $plan->created_at?->format('d M Y') }}
৳ {{ number_format($plan->price, 2) }} {{ $plan->duration_days }} Days @if($plan->is_trial) Trial @else Paid @endif @if($plan->status) Active @else Inactive @endif
Edit
@csrf @method('PATCH')
@csrf @method('DELETE')
কোনো প্ল্যান পাওয়া যায়নি।
{{-- Pagination --}} @if($plans->hasPages())
{{ $plans->links() }}
@endif
@endsection