Server IP : 66.29.132.124 / Your IP : 18.116.89.2 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/book24.ng/modules/Booking/Views/emails/ |
Upload File : |
@extends('Email::layout') @section('content') <div class="b-container"> <div class="b-panel"> @switch($to) @case ('admin') <h3 class="email-headline"><strong>{{__('Hello Administrator')}}</strong></h3> <p>{{__('The booking status has been updated')}}</p> @break @case ('vendor') <h3 class="email-headline"><strong>{{__('Hello :name',['name'=>$booking->vendor->nameOrEmail ?? ''])}}</strong></h3> <p>{{__('The booking status has been updated')}}</p> @break @case ('customer') <h3 class="email-headline"><strong>{{__('Hello :name',['name'=>$booking->first_name ?? ''])}}</strong></h3> <p>{{__('Your booking status has been updated')}}</p> @break @endswitch @include($service->email_new_booking_file ?? '') </div> </div> @endsection