@extends($layout_path) @section('title', $app_setting['name'] . ' | ' . __('Subscriber List')) @section('header-title')
| # | {{ __('ID') }} | {{ __('Student Name') }} | {{ __('Plan Name') }} | {{ __('Plan Type') }} | {{ __('Enrolled Courses') }} | {{ __('Starts At') }} | {{ __('Expires At') }} | {{ __('Price') }} |
|---|---|---|---|---|---|---|---|---|
| {{ $loop->index + 1 }} | {{ generateID($subscriber->id) }} | {{ $subscriber->user?->name }} | {{ $subscriber->plan?->title }} | {{ $subscriber->plan?->plan_type }} | {{ \Carbon\Carbon::parse($subscriber->starts_at)->format('d M,Y') }} | {{ \Carbon\Carbon::parse($subscriber->ends_at)->format('d M,Y') }} | {{ $app_setting['currency_symbol'] . $subscriber->plan?->price }} | |
| {{ __('No data found') }} | ||||||||