@extends('layouts.default') @section('title','离职老师信息') @section('content') @include('shared._messages')
查看在职老师
@foreach ($teachers as $t) @endforeach
老师编号 英文名 入职日期 离职日期 操作
{{$t->staff->id}} {{$t->staff->englishname}} {{$t->join_date}} {{$t->leave_date}} 查看详情
@if (count($teachers)>config('page.PAGE_SIZE')) @include('shared._pagination') @endif @stop