@include('common.header_links')
@include('common.header') @include('common.sidebar')

{{ $title }} List

This section displays all {{ $title }}. You can add, edit, delete, or modify details such as name, duration, price and description.
@include('common.pageAlerts')

{{ $title }} List

@foreach ($params as $index => $list) @endforeach
# Name Duration (in months) Price ₹ Description Status Action
{{ ($params->currentPage() - 1) * $params->perPage() + $index + 1 }}. {{ $list->name }} {{ $list->duration_in_month }} ₹ {{ $list->price }} {{ $list->description }}
active_stat == 1 ? 'checked' : '' }} onclick="confirmAndGoToUrlStatusChange( 'Please confirm', 'Are you sure you want to {{ $list->active_stat == 0 ? 'activate' : 'deactivate' }} {{ $list->name }} {{ $title }}? Changing its status will take effect immediately. Do you want to continue?', 'info', '{{ route('changeSubscriptionPlanStatus.param', [$list->id, $list->active_stat]) }}', this )" >
@include('common.footer')
@include('common.script')