@extends('layouts.default') @section('title','关联课程') @section('content') @include('shared._messages')
@include('shared._errors')
{{ method_field('PATCH') }} {{ csrf_field() }}
学期 {{$term->term_name}}
英文名
已上课程 @if (count($teacher->lessons) != 0) @foreach ($teacher->lessons as $l) @if ($l->term_id == $current_term_id) @if ($flag) @if ($l->day == 'Mon') {{$l->lesson_name}}  {{ date('H:i',strtotime($l->start_time))}}-{{ date('H:i',strtotime($l->end_time)) }}-{{$l->classroom}} @endif @else {{$l->lesson_name}}  {{$l->day}}-{{ date('H:i',strtotime($l->start_time))}}-{{ date('H:i',strtotime($l->end_time)) }}-{{$l->classroom}}
@endif @endif @endforeach @else 暂无 @endif
选择课程
  返回列表
@stop