@php /* @var $order \App\Models\Order */ @endphp @component('mail::message') # Siparişiniz Alındı! Sayın {{ $order->customer_name }}, Siparişiniz başarıyla alındı. Siparişinizin detayları aşağıdaki gibidir: @component('mail::panel') ### Sipariş Detayı @component('mail::table') | ÜRÜN | BİRİM FİYAT | ADET | AĞIRLIK | TOPLAM | |:-----|:------------|:----:|:-------:|--------:| @foreach($order->items as $item) | {{ $item->product_name }} | {{ number_format($item->unit_price, 2) }} ₺ | {{ $item->quantity }} | {{ $item->weight }} KG | {{ number_format($item->subtotal, 2) }} ₺ | @endforeach @endcomponent @component('mail::panel')