@include('services.partials.label')
{{ __('services.price') }}:
{{ $service->formattedPrice }}
@if($service->plan->type == 'recurring')
{{ __('services.billing_cycle') }}:
{{ __('services.every_period', [
'period' => $service->plan->billing_period > 1 ? $service->plan->billing_period : '',
'unit' => trans_choice(__('services.billing_cycles.' . $service->plan->billing_unit),
$service->plan->billing_period)
])
}}
@if($service->expires_at)
{{ __('services.renews_on') }}:
{{ $service->expires_at->format('M d, Y') }}
@endif
@endif
{{ __('services.status') }}:
@if($service->cancellation && $service->status == 'active')
{{ __('services.statuses.cancellation_pending') }}
@else
{{ __('services.statuses.' . $service->status) }}
@endif
@include('services.partials.billing-agreement')
@foreach ($fields as $field)
{{ $field['label'] }}:
{{ $field['text'] }}
@endforeach