@extends('emails.template') @section('title', 'Assignment Graded!') @section('content')

Your Assignment Has Been Graded

Hi {{ $submission->student->user->name }},

Your instructor has reviewed and graded your submission for the assignment: {{ $submission->assignment->title }}.

Grading Summary:
Score: {{ $submission->grade }} / {{ $submission->assignment->points ?? '100' }}
Graded At: {{ now()->format('M d, Y') }}
@if($submission->feedback)

Feedback from Instructor:
"{{ $submission->feedback }}"

@endif
View Submission Portal

Keep up the great work!

@endsection