@extends('layouts.app') @section('title', 'Custom Product Progress') @section('page-title', 'Custom Product Progress Report') @section('breadcrumb', 'Reports / Custom Product Progress') @section('content')
@if($records->count())
@foreach($records as $record) @endforeach
Product Name Learner Email Progress Completed Content Last Activity Status
{{ $record->course?->title ?? '—' }} {{ $record->user?->name }} {{ $record->user?->email }} {{ number_format($record->progress ?? 0, 0) }}% {{ ($record->meta['completed_content'] ?? '—') }} {{ $record->updated_at?->format('M d, Y') }} {{ ucfirst($record->status) }}
{{ $records->links() }}
@else @endif
@endsection