⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
work
/
themes
/
Base
/
Booking
/
Views
/
emails
/
View File Name :
new-booking.blade.php
@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') @include('Booking::emails.parts.panel-passengers') </div> @endsection