File: D:/HostingSpaces/SBogers26/gripp.nu/workbench/komma/kms/src/views/dashboard/panels/orders.blade.php
<div class="entity-attribute entity-attribute-title">
Te verzenden bestellingen
</div>
@foreach($orders as $order)
<div class="entity-attribute entity-attribute">
<label>{{ Carbon\Carbon::parse($order->ordered_at)->format('d-m-Y H:i') }}</label>
<div class="content">{{ $order->getFullName() }} - {{ Format::asPrice($order->price_total, ['currency'=>'€ ']) }}</div>
</div>
@endforeach
<div class="entity-attribute entity-attribute-text">
<a href="{{ action('kms.orders.show', ['orders' => 'te-verzenden']) }}">Toon alle te verzenden bestellingen</a>
</div>