@extends('emails.layouts.main') @section('title', 'New Course Review') @section('content')
@if($rating->review) @endif
New Course Review Received!
A new review has been posted for a course. Here are the details:
Course Information:
Course ID: {{ $course->id }}
Course Title: {{ $course->title }}
Reviewer Information:
Name: {{ $user->full_name }}
Email: {{ $user->email }}
Rating:
⭐ {{ $rating->rating }} / 5
Review Comment:
"{{ $rating->review }}"
Posted on {{ $rating->created_at->format('F d, Y \a\t H:i') }}
View Course
@endsection