@extends('layouts.app') @section('title', 'Tracks') @section('page-title', 'Tracks') @section('breadcrumb', 'Products') @section('content')

Instructor Tracks

Build learning tracks that guide learners through a path.

Create Track
@if($tracks->count())
@foreach($tracks as $track) @endforeach
Title Instructor Content Security Status Actions

{{ $track->title }}

{{ $track->created_at->format('M d, Y') }}

{{ $track->instructor?->name ?? '—' }}

{{ $track->instructor?->email }}

{{ $track->contentSecurityLabel() }} {{ ucfirst($track->status) }}
@csrf @method('DELETE')
{{ $tracks->links() }}
@else @endif
@endsection