@component('mail::layout') {{-- Header --}} @slot('header') @component('mail::header', ['url' => settings('site_url')]) @endcomponent @endslot {{-- Body --}} @foreach($dfr->answers as $key=>$item) @endforeach
{{$item->name}} @if($item->type == 'file' || $item->type == 'image') {{$item->value}} @else {{ gettype($item->value) == 'string' ? $item->value : json_encode($item->value, JSON_UNESCAPED_UNICODE) }} @endif

Teşekkürler,
{{settings('site_title')}} {{-- Subcopy --}} @isset($subcopy) @slot('subcopy') @component('mail::subcopy') {{ $subcopy }} @endcomponent @endslot @endisset {{-- Footer --}} @slot('footer') @component('mail::footer') © {{ date('Y') }} {{ settings('site_title') }}. @lang('Tüm hakları saklıdır.') @endcomponent @endslot @endcomponent