@extends('emails.layouts.main') @section('title', 'New Course Created') @section('content')
@if($course->short_description) @endif
New Course Created!
A new course has been added to the system. Here are the details:
@if($course->slug) @endif @if($course->price) @endif @if($course->level) @endif @if($course->language) @endif @if($course->status) @endif
Course ID: {{ $course->id }}
Course Title: {{ $course->title }}
Slug: {{ $course->slug }}
Price: ${{ number_format($course->price, 2) }}
Level: {{ $course->level }}
Language: {{ $course->language }}
Status: {{ $course->status }}
Created At: {{ $course->created_at->format('Y-m-d H:i:s') }}
Short Description:
{{ Str::limit($course->short_description, 200) }}
View Course
@endsection