@extends('layouts.app') @section('title', 'Fresh Trial Insights') @section('page-title', 'Fresh Trial Insights') @section('breadcrumb', 'Insights / Sales / Fresh Trial') @section('content')
@if($records->count())
@foreach($records as $row) @endforeach
LearnerEmailTrial Product EnrolledLast AccessStatus
{{ $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') ?? '—' }} {{ ucfirst($row->status) }}
{{ $records->links() }}
@else @endif
@endsection