@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->phone }} {{ $item->course_name }} {{ $item->apply_date }} {{ $item->end_date }} {{ $item->teacher_names }} {!! str_replace(PHP_EOL, '
', $item->remark) !!}
{{ $list->links() }}
@endsection @section('footer') @endsection