@extends('layouts.dashboard') @section('title', 'Subscribers - Media World') @section('page-title', 'Subscriber Management') @section('content')

Active Subscribers

1,189

Inactive Subscribers

58

Avg. Lifetime (Days)

47

All Subscribers

@foreach($subscribers as $subscriber) @endforeach
ID Phone Number Status Joined Date Actions
#{{ $subscriber->id }}
{{ $subscriber->msisdn }}
@if($subscriber->status === 'active') Active @else Inactive @endif {{ $subscriber->subscribed_at->format('M d, Y') }}

Showing {{ $subscribers->firstItem() ?? 0 }} to {{ $subscribers->lastItem() ?? 0 }} of {{ $subscribers->total() }} subscribers

{{ $subscribers->links() }}
@endsection