|
|
New Leasing InquiryYou have received a new leasing application via the website form. Here are the details: |
|
Company Name
{{ $data->company_name }}
Contact Person
{{ $data->contact_person }}
Email
{{ $data->email }}
Phone
{{ $data->phone }}
Address
{{ $data->address ?? 'N/A' }}
City
@if(is_array($data->city))
{{ implode(', ', $data->city) }}
@else
{{ $data->city ?? 'N/A' }}
@endif
Start Date
{{ $data->start_at ?? 'N/A' }}
Space Type
{{ $data->space_type ?? 'N/A' }}
Space Range
{{ $data->min_space ?? 0 }} - {{ $data->max_space ?? 0 }}
sqm
Message
{{ $data->message ?? 'No message provided' }}
|