{{-- resources/views/library/course/history.blade.php 历史课程列表页(分页)。 --}} @extends('layouts.library') @section('title', __('library.course_history_title') . ' · ' . __('library.site_name')) @push('styles') @vite('resources/css/modules/library-course.css') @endpush @section('breadcrumb') @endsection @section('hero')

{{ __('library.course_history_title') }} {{ $total }}

{{ __('library.course_history_subtitle') }}

@endsection @section('content')
@if($courses->isNotEmpty())
@foreach($courses as $course) @endforeach
{{-- 分页 --}}
{{ $courses->links('library.anthology.pagination') }}
@else
@endif
@endsection