@extends($layout_path) @section('title', $app_setting['name'] . ' | ' . __('Subscription List')) @section('header-title')
| # | {{ __('Title') }} | {{ __('Price') }} | {{ __('Plan') }} | {{ __('Status') }} | {{ __('Action') }} | |
|---|---|---|---|---|---|---|
| {{ generateID($loop->iteration) }} | {{ $plan->title }} | {{ currency($plan->price) }} | {{ $plan->plan_type }} |
@if (!$plan->is_active)
{{ __('Inactive') }}
{{ __('Active') }}
|
{{ __('View Details') }} {{ __('Edit Plan') }} {{ __('Delete Plan') }} | |
{{ __('No Plans Available') }} |
||||||