@extends('student.layouts.app') @section('title', $mark->title . ' | ' . ($course->subject?->name ?: $course->name)) @section('content')
@include('student.courses.inc.overview', ['course' => $course]) @include('student.courses.inc.statistics')
@include('student.courses.inc.tabs', ['course' => $course])

{{ $mark->title }}

{{ $mark->description }}

@if($studentMark->absent)
{{ __('dashboard.Absent') }}
@else
{{ $studentMark->mark ?? 0 }}
/
{{ $mark->score }}
@if(($studentMark->mark ?? 0) >= ($mark->score / 2))
{{ __('dashboard.Pass') }}
@else
{{ __('dashboard.Fail') }}
@endif
@endif
{{ $course->name }}
{{ __('dashboard.Course') }}
{{ $mark->date->format('d M, Y') }}
{{ __('dashboard.Date') }}
@endsection @section('scripts') @endsection