@extends('admin.layout') @section('title', 'Subscriptions') @section('content')
Reset

Subscriptions ({{ $subscriptions->total() }})

@foreach($subscriptions as $s) @endforeach
TenantPlanStatusPeriodCreated
{{ $s->tenant->name ?? '—' }} {{ $s->plan->name ?? '—' }} {{ ucfirst($s->status) }} {{ $s->current_period_start ? \Carbon\Carbon::parse($s->current_period_start)->format('M d') : '—' }} → {{ $s->current_period_end ? \Carbon\Carbon::parse($s->current_period_end)->format('M d, Y') : '—' }} {{ $s->created_at->format('M d, Y') }}
{{ $subscriptions->links() }}
@endsection