{{ $componentName }}

@error('type') {{ $message }} @enderror
@error('fromDate') {{ $message }} @enderror
@error('toDate') {{ $message }} @enderror
@if (!$totalUsers->isEmpty())
@foreach ($totalUsers as $totalUser) @endforeach
Nombre Ventas Propinas
{{ $totalUser->user->name }} {{ $totalUser->quantity }} ${{ number_format($totalUser->total_tip, 0, ',', '.') }}
{{ $totalUsers->links() }}
@endif @if (!$tipPerUsers->isEmpty())
@foreach ($tipPerUsers as $tipPerUser) @endforeach
Fecha Nombre Usuario Id Venta Tipo Venta Propina
{{ \Carbon\Carbon::parse($tipPerUser->created_at)->format('Y-m-d H:i') }} {{ $tipPerUser->user->name }} {{ $tipPerUser->id }} {{ $tipPerUser->type_sale }} ${{ number_format($tipPerUser->tip, 0, ',', '.') }}
{{ $tipPerUsers->links() }}
@endif @if ($totalUsers->isEmpty() && $tipPerUsers->isEmpty())
No hay pagos en la fecha seleccionada.
@endif
@include('livewire.tenant.estadisticas.cancellation.detail')