@extends('backend::layouts.app')
@section('content')
Plan
show
| Stripe Product Id |
{{ $plan->stripe_product_id }} |
| Name |
{{ $plan->name }} |
| Subtitle |
{{ $plan->subtitle }} |
| Ribbon |
{{ $plan->label }} |
| Button Name |
{{ $plan->btn_name }} |
| Css Id |
{{ $plan->css_id }} |
| Css Class |
{{ $plan->css_class }} |
| Created At |
{{ app_datetime($plan->created_at) }} |
| Updated At |
{{ app_datetime($plan->updated_at) }} |
| Description |
{{ $plan->description }} |
| Options |
| Name |
Value |
@foreach($plan->options as $name => $value)
| {{ $name }} |
{{ $value }} |
@endforeach
|
@endsection