@extends($layout_path) @section('title', $app_setting['name'] . ' | ' . __('Subscriber List')) @section('header-title')
| # | {{ __('Transaction ID') }} | {{ __('Organization Name') }} | {{ __('Plan Name') }} | {{ __('Plan Type') }} | {{ __('Plan Duration') }} | {{ __('Starts At') }} | {{ __('Expires At') }} | |
|---|---|---|---|---|---|---|---|---|
| {{ generateID($subscriber->id) }} | {{ generateID($subscriber->transaction_id) }} | {{ $subscriber->organization?->name }} | {{ $subscriber->plan->title }} | {{ $subscriber->plan->plan_type }} | {{ $subscriber->plan->plan_type == 'yearly' ? $subscriber->plan->duration . ' ' . 'Yearly' : $subscriber->plan->duration . ' ' . 'Days' }} | {{ \Carbon\Carbon::parse($subscriber->subscribed_at)->format('d M,Y h:i A') }} | {{ \Carbon\Carbon::parse($subscriber->expires_at)->format('d M,Y h:i A') }} | |
| {{ __('No data found') }} | ||||||||