@extends('layouts.app') @section('title', 'Subscription Plan') @section('content')
| Package Name | Validity (days) | Price | Start Date | Expired Date | Action | |
|---|---|---|---|---|---|---|
| {{ $plan->pakage_name }} | {{ $plan->validity }} | ${{ number_format($plan->price, 2) }} | {{ $plan->start_date ? \Carbon\Carbon::parse($plan->start_date)->format('M d, Y') : 'None' }} | {{ $plan->expired_date ? \Carbon\Carbon::parse($plan->expired_date)->format('M d, Y') : 'None' }} | Edit Delete | |
| No subscription plans found | ||||||