@php($fees = isset($fees) ? $fees : true)
| {{ __('admin.products.tariff') }} | @foreach ($recurrings as $recurring){{ $recurring['translate'] }} | @endforeach
|---|---|
| {{ __('store.price') }} | @foreach ($recurrings as $k => $recurring)@include('admin.shared.input', ['name' => ($pricing_key ?? 'pricing') . '['. $k .'][price]','type' => 'number','step' => '0.01','min' => 0, 'value' => old('recurrings_' . $k . '_price', $pricing->{$k}), 'attributes' => ['data-months' => $recurring['months']]]) | @endforeach
| {{ __('store.fees') }} | @foreach ($recurrings as $k => $recurring)@include('admin.shared.input', ['name' => ($pricing_key ?? 'pricing') . '['. $k .'][setup]', 'step' => '0.01','min' => 0, 'value' => old('recurrings_' . $k . '_setup', $pricing->{"setup_". $k}), 'attributes' => ['data-months' => $recurring['months']]]) | @endforeach
{{ $errors->first(($pricing_key ?? 'pricing')) }}
@endif