@extends('layouts.app') @section('title', $subject->name) @section('content')

{{ $subject->name }}

Assign Teachers Edit Back
Subject Information

Code: {{ $subject->code }}

Assigned Teachers
@if($teachers->isEmpty())
No teachers assigned
@else @foreach($teachers as $teacher) @endforeach
{{ $teacher->user->name }}
{{ $teacher->user->email }}
@endif
@endsection