@extends('admin.layout') @section('header') @endsection @section('content')
{{ $model_name . '列表' }}
@if($list->count() <= 0) @else @foreach($list as $item) @endforeach @endif
姓名 年龄 婚姻状况 职业 工作地点 住址 请假次数 操作
暂无{{ $model_name }}
{{ $item->name }} {{ $item->age }} {{ $item->getMarry() }} {{ $item->job }} {{ $item->work_addr }} {{ $item->addr }} {{ empty($item->short_leave_times) ? 0 : $item->short_leave_times }} {{ empty($item->long_leave_times) ? 0 : $item->long_leave_times }}
课程 编辑
删除
{{ $list->links() }}
@endsection @section('footer') @endsection