@php $project = App\Models\Lesson::where('id', request()->route()->parameter('id'))->firstOrFail(); $submission = DB::table('project_submissions') ->where('lesson_id', $project->id) ->where('user_id', auth()->id()) ->first(); @endphp
{{ get_phrase('Thank you! We have received your project and it is currently in the instructor\'s review queue.') }}
{{ get_phrase('The instructor has reviewed your project and provided feedback for improvement.') }}
{{ get_phrase('Good work! Your project has met the assessment criteria.') }}
@if($submission->comment)