@extends($layout_path) @section('title', $app_setting['name'] . ' | ' . __('Subscriber List')) @section('header-title')

{{ __('Subscriber List') }}

@endsection @section('content')
@forelse ($subscribers as $subscriber) {{-- modal design for course --}} {{-- modal design for course --}} @empty @endforelse
# {{ __('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') }}
@endsection @push('styles') @endpush @push('scripts') @endpush