/home/brandsfa/bigshoponly.com/resources/views/email-templates/order-placed.blade.php
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <title>{{ translate('Order_Placed') }}</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 order placed') }}</h3>
            {{ translate('We have sent you this email in response to your order placed. You will be able to see your order status after login to your account') }}.
            <br/>
            <h3 class="pt-20px">{{ translate('Your_order_ID') }}</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>