@component('mail::layout')
    {{-- Header --}}
    @slot('header')
        @component('mail::header', ['url' => ''])
        @if($data['company']['logo'])
            
        @else
            {{$data['company']['name']}}
        @endif
        @endcomponent
    @endslot
    {{-- Body --}}
    
    {{-- Subcopy --}}
    @slot('subcopy')
        @component('mail::subcopy')
            You have received a new estimate from {{$data['company']['name']}}
            @component('mail::button', ['url' => url('/customer/estimates/pdf/'.$data['estimate']['unique_hash'])])
                View Estimate
            @endcomponent
        @endcomponent
    @endslot
     {{-- Footer --}}
     @slot('footer')
        @component('mail::footer')
            Powered by 
        @endcomponent
    @endslot
@endcomponent