@extends('main.app') @section('content')

{{ __('Pricing') }}

{{ __('priceing_description') }}
@foreach($plans as $row) @php $plan=json_decode($row->data); @endphp

{{ $row->name }}

{{ amount_format($row->price) }}

@if($row->days == 365) {{ __('Yearly') }} @elseif($row->days == 30) {{ __('Monthly') }} @else {{ $row->days }} {{ __('Days') }} @endif
  • {{ __('Products Limit') }} {{ $plan->product_limit }}
  • {{ __('Storage Limit') }} {{ number_format($plan->storage) }}MB
  • {{ __('Use Subdomain') }}
  • @if($plan->custom_domain == true) {{ __('Use your existing domain') }} @else {{ __('Use your existing domain') }} @endif
  • @if($plan->inventory == true) {{ __('Inventory Management') }} @else {{ __('Inventory Management') }} @endif
  • @if($plan->pos == true) {{ __('POS System') }} @else {{ __('POS System') }} @endif
  • @if($plan->customer_panel == true) {{ __('Customer Panel') }} @else {{ __('Customer Panel') }} @endif
  • @if($plan->google_analytics == true) {{ __('Google Analytics') }} @else {{ __('Google Analytics') }} @endif
  • @if($plan->gtm == true) {{ __('Google Tag Manager (GTM)') }} @else {{ __('Google Tag Manager (GTM)') }} @endif
  • @if($plan->facebook_pixel == true) {{ __('Facebook Pixel') }} @else {{ __('Facebook Pixel') }} @endif
  • @if($plan->whatsapp == true) {{ __('Whatsapp Api') }} @else {{ __('Whatsapp Api') }} @endif
  • @if($plan->qr_code == true) {{ __('QR Code') }} @else {{ __('QR Code') }} @endif
  • @if($plan->live_support == true) {{ __('Technical Support') }} @else {{ __('Technical Support') }} @endif
  • {{ __('Multi Language') }}
  • {{ __('Image Optimization') }}
@if($row->is_trial == 1) {{ __('Register') }} @endif
@endforeach
@endsection