@extends('packer.layouts.master') @section('title', $page_title) @section('content')
{{ $page_title }}
@forelse ($orders as $id => $order) @empty @endforelse
{{ __('#') }} {{ __('User') }} {{ __('Company') }} {{ __('Delivery') }} {{ __('Actions') }}
{{ ++$id }} {{ $order->user->name ?? null }} {{ $order->user->company ?? null }} @if ($order->approval_status != 'canceled' && $order->approval_status != 'decline') @endif
No orders found
@endsection