@extends('email.new-master')
@section('content')
|
| |
|
Hello, {!! $params->has('user_name') ? $params['user_name'] : "User" !!} {!! $params->has('content') ? $params['content'] : "" !!}
|
|
|
|
|
{!! $params->has('box_title') ? $params['box_title'] : "Login Details" !!}
|
|
|
|
Amount :
|
|
${!! $params->has('amount') ? $params['amount'] : "" !!}
|
|
|
Account :
|
|
{!! $params->has('account') ? $params['account'] : "" !!}
|
|
|
Status :
|
|
{!! $params->has('status') ? $params['status'] : "" !!}
|
|
|
Comment :
|
|
{!! $params->has('comment') ? $params['comment'] : "" !!}
|
|
|
| |
@if($params['status'] == 'Accepted')
| |
|
Here we attached the terms and conditions for the welcome bonus.
|
|
|
|
@endif
|
|
|
|
|
|
@endsection