@if($orders && count($orders) > 0)
@foreach($orders->take(10) as $order) @endforeach
# Type Status Date
#{{ $order->id }} {{ $order->equipment_type }} {{ $statuses[$order->status]['name'] ?? 'Unknown' }} {{ $order->created_at ? $order->created_at->format('M d, Y') : '' }} @if(isset($permission['edit']) && $permission['edit']) @endif
@if(count($orders) > 10)
View all {{ count($orders) }} orders →
@endif @else

No equipment orders yet.

@endif