@extends('layouts.app') @section('title', 'My Dashboard - SecureSoftPay') @push('styles') @endpush @section('content')

My Dashboard

Your Active Products/Services
@forelse ($active_services as $service)
{{ $service->product->name ?? 'N/A' }} {{ $service->domain_name }}
Active @if (in_array(strtolower($service->product->group->name ?? ''), ['shared hosting', 'reseller hosting'])) @else Manage @endif
@empty

No active services to display.

@endforelse
@endsection