Files
click-erp/resources/views/emails/holidays.blade.php
2026-04-16 14:22:04 +00:00

37 lines
671 B
PHP

<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
</head>
<body>
<div class="">
<img src="{!! url('public/assets/img/click-banner.png') !!}" alt="Click Mobile Banner Logo">
</div>
<h2>{{ date('F d, Y') }} Upcoming Holidays <br></h2>
Hello Team,<br>
<p>
Kindly note the following Upcoming Holidays</b>.</b>
</p>
<br>
<br>
<strong>Holiday Details</strong>
@foreach ($holiday_arr as $row)
<br>
<hr>
<p>Name : {{ $row['name'] }}</p>
<p>country : {{ $row['country'] }}</p>
<p>Event Date : {{ $row['event_date'] }}</p>
@endforeach
<p>
Sincerely, <br>
Click Mobile ERP Team
</p>
</body>
</html>