Blade Components
Subscribd’s Blade components are static, non-reactive alternatives to the Livewire components. Use them when you don’t need server-side reactivity — for example, in read-only views, emails, or contexts where Livewire is not loaded. All Blade components are prefixed withx-subscribd-.
x-subscribd-plan-card
Renders a single plan card with name, price, interval, and feature list.action slot:
x-subscribd-plan-grid
Renders a full plan comparison grid for all active plans.x-subscribd-subscription-badge
A status badge for the current subscription. Renders the subscription status as a coloured pill — for example, “Active”, “Trial”, or “Grace Period”.subscription is passed, the component resolves the authenticated user’s default subscription automatically.
x-subscribd-trial-status
Shows trial status text and days remaining.x-subscribd-invoice-history
Renders a non-paginated invoice table. Best for dashboards showing the most recent invoices.x-subscribd-invoice-link
A PDF download link for a single invoice.Publishing and overriding views
resources/views/vendor/subscribd/components/. Any published file overrides the package default.
Next steps
- Livewire Components — Reactive components with server-side state
- Theming — CSS variables and dark mode