| Current Path : /home/users/unlimited/www/egrocer.codeskitter.site/resources/views/mail/ |
| Current File : /home/users/unlimited/www/egrocer.codeskitter.site/resources/views/mail/seller_status.blade.php |
<h1 style="line-height: 24px; margin-bottom:15px; font-size: 20px;" >{{ ucwords($subject) }} </h1>
@if($status == \App\Models\Seller::$statusRegistered)
<p style="line-height: 24px; margin-bottom:15px;">
Dear, {{ $seller->name }}
</p>
<p style="line-height: 24px; margin-bottom: 15px;">
Congratulations for submitting your request, we just received your request.
We will review your submission and confirm your registration.
</p>
<p style="line-height: 24px;margin-bottom:15px;">
Once we approve your profile, we will mail you to let you know the approval status.
Thank you for being part of the success of our business.
</p>
@endif
@if($status == \App\Models\Seller::$statusRejected)
<p style="line-height: 24px; margin-bottom:15px;">
Dear, {{ $seller->name }}
</p>
<p style="line-height: 24px; margin-bottom: 15px;">
We have reviewed your profile,
Unfortunately it does not meet our criteria and your profile has been not approved/{{ $status_name }} at this time by
{{ $app_name}} administrator.
</p>
@if(isset($seller->remark) && $seller->remark != "")
<p style="line-height: 24px;margin-bottom:15px;">
<strong>Reason : </strong> {{ $seller->remark }}
</p>
@endif
<p style="line-height: 24px;margin-bottom:15px;">
However, we are eagerly awaiting your re-submission and appreciate your contributions to the success of the business.
Or you can directly contact or email to the admin by given below details.
</p>
@endif
@if($status == \App\Models\Seller::$statusDeactivated)
<p style="line-height: 24px; margin-bottom:15px;">
Dear, {{ $seller->name }}
</p>
<p style="line-height: 24px; margin-bottom: 15px;">
We have reviewed your profile,
Unfortunately it does not meet our criteria and your profile has been not approved/{{ $status_name }} at this time by
{{ $app_name}} administrator.
</p>
@if(isset($seller->remark) && $seller->remark != "")
<p style="line-height: 24px;margin-bottom:15px;">
<strong>Reason : </strong> {{ $seller->remark }}
</p>
@endif
<p style="line-height: 24px;margin-bottom:15px;">
However, you can directly contact or email to the admin by given below details.
</p>
@endif
@if($status == \App\Models\Seller::$statusActive)
<p style="line-height: 24px; margin-bottom:15px;">
Dear, {{ $seller->name }}
</p>
<p style="line-height: 24px; margin-bottom: 15px;">
Congratulations on your new venture! It sounds like an exciting opportunity,
and I'm looking forward to watching your progress as the business develops.
</p>
<p style="line-height: 24px;margin-bottom:15px;">
If there is anything at all I can do to promote your new business, please let me know.
I'd be glad to assist however I can if I can be of help.
</p>
<h1 style="line-height: 24px; margin-bottom:15px; font-size: 20px;"> Store Information </h1>
<table border="1" width="100%" cellpadding="0" cellspacing="0" bgcolor="ffffff">
<tr>
<td align="left"> Store Name </td>
<td align="left"> {{$seller->store_name}} </td>
<td align="left"> Name </td>
<td align="left"> {{$seller->name}} </td>
</tr>
<tr>
<td align="left"> Email </td>
<td align="left"> {{$seller->email}} </td>
<td align="left"> Mobile </td>
<td align="left"> {{$seller->mobile}} </td>
</tr>
</table>
@endif