@component('mail::layout')
{{-- Header --}}
@slot('header')
@component('mail::header', ['url' => config('app.url')])
{{ config('app.MAIL_FROM_NAME') }}
Novo interesse de venda
@endcomponent
@endslot
{{-- Body --}}
Nome: {{ $rent->name }}
Telefone: {{ $rent->phone }}
Tipo: {{ $rent->type }}
Cidade: {{ $rent->city }}
Observação: {{ $rent->note }}
{{-- Subcopy --}}
@isset($subcopy)
@slot('subcopy')
@component('mail::subcopy')
{{ $subcopy }}
@endcomponent
@endslot
@endisset
{{-- Footer --}}
@slot('footer')
@component('mail::footer')
© {{ date('Y') }} {{ config('app.name') }}
@endcomponent
@endslot
@endcomponent