@extends('admin.layout') @section('header') @endsection @section('content')
{{ $model_name . '排行' }}
@if($list->count() <= 0) @else @foreach($list as $item) @endforeach @endif
排名 姓名 课程名称 累计时间
暂无{{ $model_name }}
{{ $item->rank }} {{ $item->name }} {{ $item->courseName }} {{ $item->totalHuman }}
{{ $list->links() }}
@endsection @section('footer') @endsection