@extends('layouts.side_bar') @section('content')

Assignments

Manage your course assignments

Create New Assignment
@if (session('success')) @endif
@if ($assignments->count() > 0)
@foreach ($assignments as $assignment) @endforeach
Title Course Subject Due Date Status Submissions Actions
{{ $assignment->title }} {{ $assignment->course->title }} {{ $assignment->subject->name }} {{ $assignment->due_date->format('M d, Y') }} {{ ucfirst($assignment->status) }} {{ $assignment->submissions->count() }} View Edit
@csrf @method('DELETE')
@else

No assignments created yet

Create Your First Assignment
@endif
{{ $assignments->links() }}
@endsection