File: D:/HostingSpaces/SBogers85/equichecker.com/resources/views/kms/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>