@extends('layouts.app') @section('title', $segment->title) @section('page-title', $segment->title) @section('breadcrumb', 'Segments / Details') @section('content')

{{ $segment->description ?? 'No description' }}

Back

Assign Learner

@csrf
@forelse($segment->users as $user)

{{ $user->name }} ยท {{ $user->email }}

@empty

No learners assigned

@endforelse

Assign Course

@csrf
@forelse($segment->courses as $course)

{{ $course->title }}

@empty

No courses assigned

@endforelse

Update Segment

@csrf @method('PUT')
@endsection