@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:
|
Field
|
Old Value
|
New Value
|
@foreach($changes as $change)
|
{{ $change['field'] }}
|
{{ $change['old_value'] }}
|
{{ $change['new_value'] }}
|
@endforeach
|
|
|
|
@endsection