@extends('layouts.app') @section('content')

Customer Portal

Welcome, {{ $customer->name }}

@if($subscription)

Active Product: {{ $subscription->product->name }}

Plan: {{ $subscription->plan->name }} ({{ $subscription->plan->tier }})

Status: {{ $subscription->status }}

License Key: {{ $subscription->license?->formatted_key }}

Manage Subscription @else

No active subscriptions yet.

@endif

Available SaaS Products

@foreach($products as $product)
{{ $product->name }}

{{ $product->description }}

Purchase
@endforeach

Recent Payments

@endsection