@extends('layouts.main') @section('title', '| Reportes') @section('titlePage', 'Reportes') @section('content')
@include('report.menu')

{{ __('Reporte Pedido por fecha') }}

@if ($message = Session::get('success'))

{{ $message }}

@endif
@foreach ($orders as $order) @endforeach
Orden De Retiro Cliente Vendedor Estado Total Fecha Ingreso Taller Fecha Creación
{{ $order?->id }} {{ $order?->customer?->name }} {{ $order?->owner?->name }} {{ \App\Models\Order::$states[$order->state] }} $ {{ number_format($order->total(), 0) }} {{ $order->date_workshop }} {{ $order->created_at }}
{{$orders->links('pagination::bootstrap-5')}}
@endsection