@extends('layouts.layout-2') @section('content')
| {{__('Vorname')}} | {{__('Nachname') }} | {{__('E-Mail') }} | {{__('Betrag') }} | {{__('Datum') }} | {{__('Order')}} | {{__('Status')}} |
|---|---|---|---|---|---|---|
| {{ $value->shopping_user->billing_firstname }} | {{ $value->shopping_user->billing_lastname }} | {{ $value->shopping_user->billing_email }} | {{ $value->getFormattedTotalShipping()." €" }} | {{ $value->created_at->format("d.m.Y") }} | @foreach($value->shopping_order_items as $shopping_order_item)
{{ $shopping_order_item->product->name }} @endforeach |
{!! App\Services\Payment::getShoppingOrderBadge($value) !!} |