@forelse ($services as $service)
{{ $service->label }}
@if ($service->status == 'active') @elseif($service->status == 'suspended' || $service->status == 'cancelled') @elseif($service->status == 'pending') @endif
{{ in_array($service->plan->type, ['recurring']) ? __('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 && $service->expires_at > now()) - {{ __('services.renews_in') }} {{ $service->expires_at->longAbsoluteDiffForHumans() }} @endif
@empty

{{ __('services.no_services') }}

@endforelse {{ $services->links() }}