@extends('admin.layouts.app') @section('title', 'Abonelikler') @section('page-title', 'Abonelikler') @section('content')
| Kullanıcı | Plan | Başlangıç | Bitiş | Durum | Ödeme | İşlem |
|---|---|---|---|---|---|---|
|
{{ strtoupper(substr($sub->user?->name ?? '?', 0, 1)) }}
{{ $sub->user?->name ?? '—' }}
{{ $sub->user?->email ?? '' }}
|
{{ $sub->plan?->name ?? '—' }} | {{ $sub->starts_at?->format('d.m.Y') ?? '—' }} | {{ $sub->expires_at?->format('d.m.Y') ?? '—' }} | @if($sub->status === 'active') Aktif @elseif($sub->status === 'expired') Sona Erdi @else İptal @endif | {{ $sub->payment_method ?? '—' }} | @if($sub->status === 'active') @else — @endif |
Abonelik bulunamadıFiltrelerinizi değiştirin. |
||||||