@component('mail::message') # {{ __('Hello') }} {{ Str::ucfirst($visitor['name']) }},
@component('mail::panel') {{ __('A New Visitor Registered! Please check the details and take actions.') }}

{{ __('Visitor Information') }}

{{ __('Name:') }} {{ Str::ucfirst($visitor['visitor_name']) }}

{{ __('Email:') }} {{ Str::ucfirst($visitor['visitor_email']) }}

{{ __('Phone:') }} {{ Str::ucfirst($visitor['visitor_phone']) }}

@endcomponent

{!! setting('notify_templates') !!}

@component('mail::button', ['url' => $visitor['acceptedUrl'], 'color' => 'green','display'=>'inline']) {{ __('Accept')}} @endcomponent
@component('mail::button', ['url' => $visitor['rejectUrl'], 'color' => 'red','display'=>'inline']) {{ __('Decline') }} @endcomponent

{{ __('Thank you for using our application!') }} {{ setting('site_name') }}
{{ config('app.name') }} @endcomponent