<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>{{ translate('New_order_received') }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{{ dynamicAsset(path: 'public/assets/back-end/css/email-basic.css') }}">
</head>
<body>
<?php
$companyPhone = getWebConfig(name: 'company_phone');
$companyEmail = getWebConfig(name: 'company_email');
$companyName = getWebConfig(name: 'company_name');
$companyLogo = getWebConfig(name: 'company_web_logo');
?>
<div class="d-flex justify-content-center align-items-center m-auto vh-100">
<div class="card">
<div class="m-auto bg-white pt-40px pb-40px text-center">
<div class="d-block">
@if(is_file('storage/app/public/company/'.$companyLogo))
<div class="d-flex justify-content-center align-items-center gap-1">
<img src="{{ dynamicStorage(path: 'storage/app/public/company/'.$companyLogo) }}" alt="{{ $companyName }}"
class="width-auto h-50px">
{{ $companyName }}
</div>
@else
{{ $companyName }}
@endif
</div>
</div>
<div class="card-header mb-3 text-center">
<h3 class="pb-20px">{{ translate('Notification mail for new order received') }}</h3>
{{ translate('We have sent you this email to notify that you have a new order. You will be able to see your orders after login to your panel') }}.
<br/>
<h3 class="pt-20px">{{ translate('New order ID for you') }} :</h3>
</div>
<div class="card-body">
<h1 class="text-info text-center pb-20px">{{ $id }}</h1>
<p class="text-center">
{{ translate('If you need help, or you have any other questions, feel free to email us') }}.
{{ translate('From') }} {{$web_config['name']->value}}
</p>
</div>
</div>
</div>
</body>
</html>