@extends('layouts.admin') @section('page-title','') @section('breadcrumb') @include('admin.partials.crumb',[ 'crumbs'=>[ route('admin.dashboard')=>__('default.dashboard'), route('admin.student.sessions')=>__lang('courses'), '#'=>__lang('course-tests') ]]) @endsection @section('content')
{{ __lang('add-test') }}
@php foreach($rowset as $row): @endphp @php endforeach; @endphp
{{ __lang('test') }} {{ __lang('opening-date') }} {{ __lang('closing-date') }} {{ __lang('author') }}
{{ $row->name }} @php if(!empty($row->opening_date)) echo showDate('d/M/Y',$row->opening_date); @endphp @php if(!empty($row->closing_date)) echo showDate('d/M/Y',$row->closing_date); @endphp {{ adminName($row->admin_id) }} {{ __lang('edit') }} {{ __lang('delete') }}
@php if($rowset->count()==0): @endphp @php endif; @endphp
@endsection