@extends('layouts.reports') @section('title', "Pedidos em um Período") @section('report_title', "Pedidos em um Período") @section('report_subtitle', $order_by == 'date' ? 'ordenados pela data' : 'ordenados pelo número') @section('contente')

Período: {{ \App\Helpers\HlpDate::dateDbToBr($data_inicio) }} a {{ \App\Helpers\HlpDate::dateDbToBr($data_fim) }}

@foreach($orders as $order)
@include('includes.client_table') @include('includes.products_table') @endforeach @endsection