@extends('emails.layout') @section('title') {{ $subject ?? 'Notification' }} @endsection @section('header') {!! $header ?? '' !!} @endsection @section('content') {!! $body ?? 'This is email body' !!} @endsection @section('signature') {!! $signature ?? '' !!} @endsection @section('footer') {!! $footer ?? '' !!} @endsection