Files
exchange-2.0/resources/views/emails/accounts/payment_proof_email.blade.php
T
2023-06-21 15:17:30 +08:00

11 lines
993 B
PHP

@extends('emails.layout.base')
@section('content')
<h4 style="font-size: 1em;">Dear {{ucwords($user->name)}},</h4>
<p style="font-size: 0.9em">Thank you for using CIEF Exchange service!</p>
<p style="margin-top: 30px; font-size: 0.8em">We have completed your transfer transaction for the ref. no {{$booking->marking}}. If you would like to view the transaction, please click on the following link:</p>
<div style="margin-top: 20px;">
<a href="{{route('booking.details', $booking->marking)}}"><button class="btn all-caps bg-primary no-border text-white pointer" style="font-size: 0.8em" >View</button></a>
</div>
<div class="all-caps hint-text" style="margin-top: 20px;"><small style="font-size: 0.7em">If you have questions, contact us at <a href="https://go.crisp.chat/chat/embed/?website_id=665dcd41-1edf-4451-8cb9-f1cf9ed35e15">here</a>. We truly appreciate your trust in our services and look forward to serving you in the future.</small></div>
@endsection