Server IP : 66.29.132.124 / Your IP : 18.218.250.241 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>{{__('New booking has been made')}}</p> @break @case ('vendor') <h3 class="email-headline"><strong>{{__('Hello :name',['name'=>$booking->vendor->nameOrEmail ?? ''])}}</strong></h3> <p>{{__('Your service has new booking')}}</p> @break @case ('customer') <h3 class="email-headline"><strong>{{__('Hello :name',['name'=>$booking->first_name ?? ''])}}</strong></h3> <p>{{__('Thank you for booking with us. Here are your booking information:')}}</p> @break @endswitch @include($service->email_new_booking_file ?? '') </div> @include('Booking::emails.parts.panel-customer') </div> @endsection