@extends('layouts.user_type.auth') @section('packages')
@include('components.alert')
Manage Subscription Packages
@forelse($packages as $index => $package) @empty @endforelse
No Package Name Pricing Duration (Months) Billing Cycle User Limit Support Level Actions

{{ $packages->firstItem() + $index }}

{{ $package->package_name }}

{{ $package->pricing }} Rupees

{{ $package->duration }}

{{ $package->billing_cycle }}

{{ $package->user_limit }}

{{ $package->support_level }}

@if ($package->package_status !== 'deleted')
@csrf @method('DELETE')
@endif
No Data Found

No data Found

@include('components.pagination', ['paginator' => $packages])
@endsection