@extends("layouts.app", ["title" => "Subscriptions List"]) @section("content_body") @include("shared.partials.page-title", ["subtitle" => "Finance", "title" => "Family Subscriptions"])
| ID | Family Name | Status | Period Start | Period End | Action |
|---|---|---|---|---|---|
| {{ $sub->id }} | {{ $sub->family->name }} | @if($sub->status === 'active') Active ($30/m) @else Inactive @endif | {{ $sub->current_period_start ? $sub->current_period_start->format('Y-m-d H:i') : 'N/A' }} | {{ $sub->current_period_end ? $sub->current_period_end->format('Y-m-d H:i') : 'N/A' }} | |
| No subscriptions found. | |||||