@extends('layouts.agent') @section('content')
| {{ __('S. No') }} | {{ __('Package Title') }} | {{ __('Activation Date') }} | {{ __('Expired Date') }} | {{ __('Status') }} | |
|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $package->plan->title ?? '-' }} | {{ $package->activated_at ?? '-' }} | {{ $package->expired_at ?? '-' }} | {!! $package->status ? 'Active' : 'Expired' !!} | |
| {{ __('No expired packages found.') }} | |||||