@extends('panel._theme_dashboard') @section('content')
Buscar período

Faturamento - {{date("d/m/Y", strtotime($start_date))}} até {{date("d/m/Y", strtotime($end_date))}}

Resumo Período
Clientes: {{$total_summary->total_rows}}
Bruto : R$ {{number_format($total_summary->total_value, 2, ',', '.')}}
Líquido (-{{$base_percentage}}%)
@php $total_value = $total_summary->total_value - ($total_summary->total_value * ($base_percentage/ 100)) @endphp
R$ {{number_format($total_value, 2, ',', '.')}}
@foreach($individual_results as $individual)
{{date("d/m/Y", strtotime($individual->schedule_date))}}
Clientes: {{$individual->total_rows}}
Bruto : R$ {{number_format($individual->total_value, 2, ',', '.')}}
Líquido (-{{$base_percentage}}%)
@php $total_value = $individual->total_value - ($individual->total_value * ($base_percentage/ 100)) @endphp
R$ {{number_format($total_value, 2, ',', '.')}}
@endforeach
@endsection @section('customJS') @endsection