@extends(getTemplate() .'.panel.layouts.panel_layout')
@push('styles_top')
@endpush
@section('content')
{{ trans("update.you_haven't_submitted_notes_for_your_courses") }}{{ trans('update.course_notes') }}
@foreach($personalNotes as $personalNote)
@php
$item = $personalNote->getItem();
@endphp
{{ trans('product.course') }}
{{ trans('public.file') }}
{{ trans('update.note') }}
@if(!empty(getFeaturesSettings('course_notes_attachment')))
{{ trans('update.attachment') }}
@endif
{{ trans('public.date') }}
@endforeach
{{ $personalNote->course->title }}
{{ trans('public.by') }} {{ $personalNote->course->teacher->full_name }}
@if(!empty($item))
{{ $item->title }}
@if(!empty($item->chapter))
{{ trans('public.chapter') }}: {{ $item->chapter->title }}
@else
-
@endif
@else
-
@endif
@if(!empty(getFeaturesSettings('course_notes_attachment')))
@if(!empty($personalNote->attachment))
{{ trans('home.download') }}
@else
-
@endif
@endif
{{ dateTimeFormat($personalNote->created_at,'j M Y | H:i') }}
{{ trans('update.no_notes') }}