@component('mail::message') Hi {{ $applyer->fname }},
# A new user has submitted the Reserve a stand!
Here’s a summary of the information the user submitted:

Name: {{ $applyer->fname . ' ' . $applyer->lname}}
Email: {{ $applyer->email }}
Phone: {{ $applyer->phone }}
Company: {{ $applyer->company }}
Website: {{ $applyer->website }}
Events:
@foreach($events as $key => $event)
{{ $event->name }}, {{ ucfirst($event->country) }} | {{ $event->dateEvent() }} [view more]
@endforeach

@lang('Best Regards'),
{{ config('app.name') }} Team @endcomponent