@extends('layouts.default') @section('title','考勤信息') @section('content') @include('shared._messages') @include('shared._errors')

{{ $term->term_name }}-{{ $month }}月 上课考勤汇总

@foreach ($teachers as $key=>$t) @if ($should_durations[$key] - $actual_goes[$key] > 0) @else @endif @endforeach
老师编号 英文名 老师类型 应排课 实际排课 实际上课 缺少课时
{{ $t->staff->id }} {{ $t->staff->englishname }} {{ $t->staff->position_name }} {{ $should_durations[$key] }} {{ $actual_durations[$key] }} {{ $actual_goes[$key] }}{{ $should_durations[$key] - $actual_goes[$key] }}0
@if (count($teachers)>config('page.PAGE_SIZE')) @include('shared._pagination') @endif
返回   
@stop