@extends('emails.layout') @section('title', $subjectText ?? 'Welcome to ' . config('app.name')) @section('header') {!! $header ?? '

Welcome to ' . config('app.name') . '

' !!} @endsection @section('content')

Hello!

This this a sample Email.

To get started, click the button below:

Get Started


If you have any questions, just reply to this email—we're always happy to help!

@endsection @section('signature') {!! $signature ?? '

Best regards,
' . config('app.name') . ' Team

' !!} @endsection @section('footer') {!! $footer ?? '

© ' . date('Y') . ' ' . config('app.name') . '. All rights reserved.

' !!} @endsection