@extends('emails.layouts.main')
@section('title', 'New Course Review')
@section('content')
|
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
|
|
@if($rating->review)
|
Review Comment:
|
@endif
|
Posted on {{ $rating->created_at->format('F d, Y \a\t H:i') }}
|
|
|
|
@endsection