@extends('layouts.app') @section('main')
| ID | {{ $plan->id }} |
|---|---|
| Name | {{ $plan->name }} |
| Description | {{ $plan->description }} |
| Price | ${{ $plan->price }} |
| Interval | {{ $plan->interval }} |
| Max Users | {{ $plan->max_users }} |
| Max Products | {{ $plan->max_products }} |
| Features | {{ $plan->features }} |
| Active | {{ $plan->is_active ? 'Yes' : 'No' }} |
| Created At | {{ $plan->created_at }} |
| Updated At | {{ $plan->updated_at }} |