@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('title') }} {{ __lang('course') }} {{ __lang('created-on') }} {{ __lang('due-date') }}
{{ $row->title }} {{ $row->course_name }} {{ showDate('d/M/Y',$row->created_at) }} {{ showDate('d/M/Y',$row->due_date) }} {{ __lang('submit-homework') }}
{!! clean($row->instruction) !!}
@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 route('student.assignment.index') ); @endphp
@endsection @section('footer') @endsection