{{-- Layout --}} @extends('teacher.layout.layout') {{-- Page Title --}} @section('title','GAS LMS | Upload Mark Scheme') {{-- Breadcrumb section --}} @section('breadcrumb') @include('components._breadcrumb', ['items' => ['Quiz' => route('teacher.course.quiz.index',$coffid)]]) @endsection {{-- Content --}} @section('content') @include('components._error')
Back to quiz
{{-- attachments --}}

Quiz Mark Scheme

@forelse ($attachments as $attachment)
@csrf
{{$attachment->file_name}}
{{$attachment->created_at->diffforhumans()}}
@empty

There are no mark schemes in this quiz.

@endforelse
@if ($attachments->count() < 4)

Upload file

@csrf

Upload Files:

Attach files Remove All
Max file size is 100MB and max number of files is 4. Upload Please wait...
@else

Alert

You will not be able to upload more files, remove some of the files then try to upload again.
@endif @endsection @section('js') @endsection