@include('emails.common.header')
@component('emails.common.table')
@component('emails.common.td')
@component('emails.common.p')
Hello {{$user->first_name }},
@endcomponent
@component('emails.common.p')
This email is to welcome you to the Empower Family as the Master Franchise {{ str_replace('_',' ',ucfirst($franchise->franchise_type)) }}
for {{ $franchise->countries->name}}
@endcomponent
{{-- @component('emails.common.p')
Kindly click the following link to activate your account: Activation Link
@endcomponent --}}
@component('emails.common.p')
Franchise Details:
@endcomponent
@component('emails.common.ul')
Company Name: {{ $franchise->registered_name}}
Franchise Type: {{ str_replace('_',' ',ucfirst($franchise->franchise_type)) }}
Country: {{ $franchise->countries->name }}
Company Address: {{ $franchise->address1 }} {{ $franchise->address2 }}
Master Franchise Email: {{ $franchise->contactusers->email }}
Master Franchise Phone Number: {{ $franchise->contactusers->mobile }}
License Start Date: {{ date(config('custom.formats.date'),strtotime($franchise->license_start_date)) }}
License Expiry Date: {{ date(config('custom.formats.date'),strtotime($franchise->license_end_date)) }}
@foreach($franchise->taxes as $key => $tax)
Tax ID Name: {{$tax->tax_title}}
Tax ID Number: {{$tax->registration_id}}
@endforeach
Wallet Provider: -
Wallet ID: -
@endcomponent
@if(!blank($agreement) || !blank($documents))
@component('emails.common.p')
Documentation:
@endcomponent
@endif
@component('emails.common.ul')
@if(!blank($agreement))
{{ $agreement->title }}
@endif
@if(!blank($documents))
@foreach($documents as $document)
{{ $document->title }}
@endforeach
@endif
@endcomponent
@component('emails.common.p')
Together we will unite the world by delivering a people centric and collaborative platform.
@endcomponent
@component('emails.common.secondary_footer')
noQuote
@endcomponent
@endcomponent
@endcomponent
@include('emails.common.footer')