|
Good day! There
@if(count($companies) > 1)
are newly created companies
@else
is a newly created company
@endif
for the date {{ $user_data['date_created'] }} and here is the list:
Important Note:
Can only show a maximum list of 20 because of the email body content limit. To view a detailed list, please login on to ConX Admin for more detailed information.
|
Company Name
|
Type
|
Contact Number
|
@foreach($companies as $company)
| {{$company->company_name}} |
@if($company->type == 'pending')
For Verification |
@else
{{ucfirst($company->type)}} |
@endif
{{$company->phone_number}} |
@endforeach
|