@extends('layouts.layout') @section('content')

Orders

Create Import

@if(session()->get('success'))
{{ session()->get('success') }}

@endif
@foreach($orders as $order) @endforeach
#Pro Customer Pickup Date Delivery Date times late # hours late# Edit Delete
{{$order->pro_number}} {{$order->customer}} @if($order->pickup_date){{$order->pickup_date->format('m/d/Y')}}@endif @if($order->delivery_date){{$order->delivery_date->format('m/d/Y')}}@endif {{$order->lateTime()['times']}} {{$order->lateTime()['hours']}}

Showing {{$orders->firstItem()}} to {{$orders->lastItem()}} of {{$orders->total()}} entries

{{$orders->links()}}
@endsection @section('footer') {{----}} @endsection