@extends('layouts.app') @section('head') @include('layouts.partials.headersection',['title'=>'Make Order']) @endsection @section('content')
@foreach($posts as $row) @php $data=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

{{ $row->description }}

{{ __('Products Limit') }} {{ $data->product_limit }}
{{ __('Storage Limit') }} {{ number_format($data->storage) }}MB
@if(env('MULTILEVEL_CUSTOMER_REGISTER') == true)
{{ __('Customer Limit') }} {{ number_format($data->customer_limit) }}
@endif
{{ __('Shipping Zone Limit') }} {{ $data->location_limit ?? '' }}
{{ __('Category Limit') }} {{ $data->category_limit ?? '' }}
{{ __('Brand Limit') }} {{ $data->brand_limit ?? '' }}
{{ __('Product Variation Limit') }} {{ $data->variation_limit ?? '' }}
{{ __('Use your own domain') }}   
@if($data->custom_domain == true)
@else
@endif
{{ __('Google Analytics') }}   
{{ __('Facebook Pixel') }}   
{{ __('Google Tag Manager') }}   
{{ __('Whatsapp Plugin') }}   
{{ __('Inventory Management') }}   
{{ __('POS') }}   
{{ __('PWA') }}   
{{ __('QRCODE') }}   
{{ __('Custom Js') }}   
{{ __('Custom Css') }}   
{{ __('Seller Support') }}   
{{ __('Customer Panel Access') }}   
{{ __('Multi Language') }}   
{{ __('Image Optimization') }}   
@endforeach
@endsection @push('js') @endpush