File: D:/HostingSpaces/SBogers33/bbec.nl/workbench/komma/kms/src/views/dashboard/panels/orders.blade.php
<div class="entity-attribute entity-attribute-title">
{{Config::get('kms::'.$lang.'/translations.toSendOrders')}}
</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']) }}">{{Config::get('kms::'.$lang.'/translations.showToSendOrders')}}</a>
</div>