@extends('layouts.app') @section('title', 'Renewal Trial Insights') @section('page-title', 'Renewal Trial Insights') @section('breadcrumb', 'Insights / Sales / Renewal Trial') @section('content')
@if($records->count())
@foreach($records as $row) @endforeach
LearnerEmailProduct Expiry DateLast AccessRenewal Status
{{ $row->user?->name }} {{ $row->user?->email }} {{ $row->course?->title ?? '—' }} {{ $row->expires_at?->format('M d, Y') }} {{ $row->user?->last_login_at?->format('M d, Y') ?? '—' }} {{ $row->expires_at?->isPast() ? 'Expired' : 'Active' }}
{{ $records->links() }}
@else @endif
@endsection