@extends('layouts.customer') @section('title') Billings Change @endsection @section('content')
{{trans('customer.billing_change')}}
@lang('customer.back')
@foreach($plans as $plan)
  • {{$plan->title}} {{isset($customer_plan->plan_id) && $customer_plan->plan_id==$plan->id?'(Current)':''}}
  • {{$plan->contact_limit}} {{trans('customer.contact_limit')}}
  • {{$plan->device_limit}} {{trans('customer.device_limit')}}
  • {{$plan->daily_receive_limit}} {{trans('customer.daily_receive_limit')}}
  • {{$plan->daily_send_limit}} {{trans('customer.daily_send_limit')}}
  • {{formatNumberWithCurrSymbol($plan->price)}}
  • @if(isset($customer_plan->plan_id) && $customer_plan->plan_id==$plan->id) @else @if(Module::has('PaymentGateway') && Module::find('PaymentGateway')->isEnabled()) @else @endif @endif
@endforeach
@endsection @section('extra-scripts') @endsection