@extends('layouts.student') @section('pageTitle',$pageTitle) @section('innerTitle',$pageTitle) @section('breadcrumb') @include('admin.partials.crumb',[ 'crumbs'=>[ route('student.dashboard')=>__lang('dashboard'), '#'=>$pageTitle ]]) @endsection @section('content')
@php foreach($paginator as $row): @endphp @php endforeach; @endphp
{{ __lang('course') }} {{ __lang('class') }} {{ __lang('lecture') }} {{ __lang('page') }} {{ __lang('added-on') }}
{{ $row->course_name }} {{ $row->lesson_name }} {{ $row->lecture_title }} {{ $row->page_title }} {{ showDate('d/M/Y',$row->created_at) }} {{ __lang('view') }}
@php // add at the end of the file after the table echo paginationControl( // the paginator object $paginator, // the scrolling style 'sliding', // the partial to use to render the control null, // the route to link to when a user clicks a control link array( 'route' => 'student/default', 'controller'=>'course', 'action'=>'bookmarks' ) ); @endphp
@endsection