@if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif
{{trans('words.plan_name')}} |
{{trans('words.duration')}} |
{{trans('words.price')}} |
{{trans('words.plan_device_limit')}} |
{{trans('words.ads_on_off')}} |
{{trans('words.status')}} |
{{trans('words.action')}} |
@foreach($plan_list as $i => $plan_data)
{{ $plan_data->plan_name }} |
{{ App\SubscriptionPlan::getPlanDuration($plan_data->id) }} |
{{html_entity_decode(getCurrencySymbols(getcong('currency_code')))}} {{ $plan_data->plan_price }} |
{{ $plan_data->plan_device_limit }} |
@if($plan_data->ads_on_off==1){{trans('words.on')}} @else{{trans('words.off')}}@endif |
@if($plan_data->status==1){{trans('words.active')}} @else{{trans('words.inactive')}}@endif |
|
@endforeach
@include("admin.copyright")
@endsection