@extends('layouts.app') @section('title', 'Upsell Trial Insights') @section('page-title', 'Upsell Trial Insights') @section('breadcrumb', 'Insights / Sales / Upsell Trial') @section('content')
@if($records->count())
@foreach($records as $row) @endforeach
LearnerEmailTrial Product Purchased ProductLast AccessStatus
{{ $row->user?->name }} {{ $row->user?->email }} {{ $row->course?->title ?? '—' }} {{ $row->user?->orders()->where('payment_status','paid')->latest()->first()?->order_number ?? '—' }} {{ $row->user?->last_login_at?->format('M d, Y') ?? '—' }} Upsold
{{ $records->links() }}
@else @endif
@endsection