@component('mail::message') # New Order from {{ config('app.name') }} Hello {{$purchase_order->supplier->name}} ! You have new order with this products: @component('mail::table') | Name | sku | Unit Cost | Quantity | Total | |:--------|:-------------:|:----------:|:--------:|:-----:| @foreach($purchase_order->purchaseOrderLines as $line) | {{$line->description}} | {{$line->product ? ($line->supplier_product->supplier_sku ?? $line->product->sku) : ''}} | {{$line->amount}} | {{$line->quantity}} | {{$line->subtotal}} | @endforeach @endcomponent Thanks,
{{ config('app.name') }} @endcomponent