@extends('layouts.admin')
@section('page-title','')
@section('breadcrumb')
@include('admin.partials.crumb',[
'crumbs'=>$customCrumbs])
@endsection
@section('content')
| {{ __lang('class') }} |
{{ __lang('date') }} |
{{ __lang('action') }} |
@php foreach($attended as $row): @endphp
| {{ htmlentities( $row->name) }} |
{{ htmlentities( showDate('d/M/Y',$row->attendance_date)) }} |
|
@php endforeach; @endphp
| {{ __lang('test') }} |
{{ __lang('result') }} |
|
@php foreach($testResults as $value): @endphp
| {{ $value->name }} |
{{ $value->score }}% (@if($value->score >= $value->passmark)
{{ __lang('Passed') }}
@else
{{ __lang('Failed') }}
@endif) |
|
@php endforeach; @endphp
@endsection