@extends('emails.layouts.main') @section('title', 'Course Update Notification') @section('content')
Course Updated: {{ $course->title }}
A course has been updated in the system. Here are the details:
Course ID: {{ $course->id }}
Course Title: {{ $course->title }}
Changed Fields:
@foreach($changes as $change) @endforeach
Field Old Value New Value
{{ $change['field'] }} {{ $change['old_value'] }} {{ $change['new_value'] }}
View Course
@endsection