@extends('layouts/contentLayoutMaster') @section('title', __('locale.plans.pricing')) @section('vendor-style') @endsection @section('content')
{{ __('locale.labels.id') }} {{__('locale.labels.name')}} {{__('locale.labels.iso_code')}} {{__('locale.labels.country_code')}} {{__('locale.labels.actions')}}
@if($plan->getCreditPrices()->count() > 0) @foreach ($plan->getCreditPrices()->orderBy('unit_from')->get() as $key => $item) @endforeach @endif
{{ __('locale.plans.recharge_volume') }} {{ __('locale.labels.per_unit_price') }} {{ __('locale.plans.number_of_units') }}
{{ str_replace('{PRICE}', '', $plan->currency->format) }} {{ $item->unit_from }} {{ str_replace('{PRICE}', '', $plan->currency->format) }} {{ $item->unit_to }} {{ str_replace('{PRICE}', '', $plan->currency->format) }} {{ $item->per_credit_cost }} {{ $item->calculateUnits() }}
@endsection @section('vendor-script') @endsection @section('page-script') @endsection