@extends("admin.admin_app") @section("content")
@if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif
@foreach($plan_list as $i => $plan_data) @endforeach
{{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')}}
{{ $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
@include("admin.copyright")
@endsection