@extends('layouts.app') @section('title', 'Live Classes Insight') @section('page-title', 'Live Classes Insight') @section('breadcrumb', 'Insights / Live / Classes') @section('content')
@if($records->count())
@foreach($records as $row) @endforeach
Class TitleInstructorDuration Join TimeLeave TimeEngagement
{{ $row->title }} {{ $row->instructor?->name ?? '—' }} {{ $row->starts_at && $row->ends_at ? $row->starts_at->diffInMinutes($row->ends_at).' min' : '—' }} {{ $row->starts_at?->format('M d, H:i') }} {{ $row->ends_at?->format('M d, H:i') }} {{ ucfirst($row->status ?? 'scheduled') }}
{{ $records->links() }}
@else @endif
@endsection