New Order

Order number {{$order->reference}} created at: {{$order->created_at}}

Hello {{ $order->vendor->name }}, {{$order->customer->name}} placed an order on Deliver2me

Customer phone number is: {{$order->customer->phone}}
It will be picked at this address: {{$order->vendor->address}}
Order's data:

@foreach ($order->products as $item) @endforeach
Name Price / Unit Quantity TOTAL
{{$item->product->name}}
{{$item->product->description}}
{{$item->price}} EUR {{$item->quantity}} {{($item->price * $item->quantity)}} EUR
Delivery {{$order->delivery_price}} EUR
Total
{{$order->total}} EUR

@if ($order->payment)

This Order is paid and the transaction number is {{$order->payment->stripe_charge_id}} please check the system before releasing the goods.
@else
This Order it is not payed please ask for payment before releasing the goods
@endif