HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
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>