@include('emails.common.header') @component('emails.common.table') @component('emails.common.td') @component('emails.common.p') Dear {{ $employeeDetails->first_name }}, @endcomponent @component('emails.common.p') You have been added as an Employee to the {{ $employeeProfileDetails->companyDetails->name }} payroll account. @endcomponent @component('emails.common.p') Employee Name: {{ $employeeDetails->first_name }} {{ $employeeDetails->last_name }} @endcomponent @component('emails.common.p') Nature of Employment: {{ ucfirst($employeeProfileDetails->nature_of_employment) }} @endcomponent @component('emails.common.p') Designation: {{ $employeeProfileDetails->designation }} @endcomponent @component('emails.common.p') Department: {{ $employeeProfileDetails->companyDepartment != null ? $employeeProfileDetails->companyDepartment->name : '-'}} @endcomponent @if(!empty($lineManage_name)) @component('emails.common.p') Line Manager: {{ $lineManage_name}} @endcomponent @endif @if (isset($employeeDetails->is_register_from_front) && $employeeDetails->is_register_from_front == 0) @component('emails.common.p') Please click here Activation Link to activate and view your account. @endcomponent @endif @component('emails.common.slogan') @endcomponent @endcomponent @component('emails.common.td') @component('emails.common.p') @if($franchise) {{ $franchise->company_name }}@endif Payroll Management @endcomponent @endcomponent @endcomponent @include('emails.common.footer')