@extends('layouts.admin') @section('page-title','') @section('breadcrumb') @include('admin.partials.crumb',[ 'crumbs'=>[ route('admin.dashboard')=>__('default.dashboard'), '#'=>isset($pageTitle)?$pageTitle:'' ]]) @endsection @section('content')
@php if(GLOBAL_ACCESS): @endphp @php endif; @endphp @php foreach($paginator as $row): @endphp @php if(GLOBAL_ACCESS): @endphp @php endif; @endphp @php endforeach; @endphp
{{ __lang('title') }} {{ __lang('session-course') }} {{ __lang('type') }} {{ __lang('created-on') }} {{ __lang('opening-date') }} {{ __lang('due-date') }} {{ __lang('submissions') }}{{ __lang('created-by') }}{{ __lang('actions') }}
{{ $row->title }} {{ $row->course_name }} {{($row->schedule_type=='s')? __lang('scheduled'):__lang('post-class') }} {{ showDate('d/m/Y',$row->created_at) }} {{ showDate('d/m/Y',$row->opening_date) }} {{ showDate('d/m/Y',$row->due_date) }} {{ $submissionTable->getTotalSubmittedForAssignment($row->id) }} {{ __lang('view-all') }} {{ adminName($row->admin_id) }}
@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' => 'admin/default', 'controller'=>'assignment', 'action'=>'index', ) ); @endphp
@endsection