@extends('layouts.app') @section('title', 'Free Users Insights') @section('page-title', 'Free Users Insights') @section('breadcrumb', 'Insights / Sales / Free Users') @section('content')
@if($records->count())
@foreach($records as $row) @endforeach
LearnerEmailFree Product Enrolled DateLast AccessUpsell Status
{{ $row->user?->name }} {{ $row->user?->email }} {{ $row->course?->title ?? '—' }} {{ $row->enrolled_at?->format('M d, Y') }} {{ $row->user?->last_login_at?->format('M d, Y') ?? '—' }} {{ $row->user?->orders()->where('payment_status','paid')->exists() ? 'Upsold' : 'Pending' }}
{{ $records->links() }}
@else @endif
@endsection