@extends('mail.notifications.layout') @section('email-header') @include('mail.partials.brand-header', ['brand' => 'woo']) @endsection @section('email-footer') @include('mail.partials.brand-footer', ['brand' => 'woo']) @endsection @section('content')

New order received

Order #{{ $order->order_number }}

You have a new WooCommerce order

A customer placed an order on {{ $store->site_name ?? parse_url($store->site_url, PHP_URL_HOST) }}. Review it in Woo Manager to confirm and fulfill.

Order details

@if($order->customer_name)
@endif @if($order->customer_email)
@endif
@if(is_array($order->line_items) && count($order->line_items) > 0)

Items

@foreach($order->line_items as $item)
{{ $item['name'] ?? 'Product' }} × {{ $item['quantity'] ?? 1 }} {{ strtoupper($order->currency ?: 'GHS') }} {{ number_format(($item['total_minor'] ?? 0) / 100, 2) }}
@endforeach
@endif

Order total

{{ $order->totalFormatted() }}

View orders

@endsection