{{-- Ordered --}}
{{ __('main.Ordered') }}
{{ $service->order_date }}
{{-- Suspended --}} @if($service->status == 'suspended')
{{ __('main.Suspended') }}
{{ $service->suspended_date }} {{ __('main.'.$service->suspended_reason) }}
@endif {{-- Period --}}
{{ __('main.Period') }}
{{ __('main.' . $service->price_detailed['period']) }}
{{-- Price Total --}}
{{ __('main.Price Total') }}
{{ $service->price_detailed['currency']['prefix'] }} {{ number_format_custom($service->price_detailed['total']['base'], 2, $client->currency->format) }} {{ $service->price_detailed['currency']['suffix'] }}
{{-- Hourly Billing OR Next Due Date --}} @if($product->hourly_billing && $service->price_detailed['period'] == 'monthly')
{{ __('main.Hourly Billing') }}
{{ __('main.Yes') }}
@endif
{{ __('main.Next Due Date') }}
{{ $service->billing_timestamp }}