@extends('master_pdf') @section('title', 'Reporte repartidor: '.$user->name) @section('content')

Repartidor: {{ $user->name }}

Rango de fecha: {{ $date_from }} / {{ $date_end }}

Entregas confirmadas: {{ $orders->count() }} | Total entregas: {{ number($orders->sum('delivery_price')) }}

Ordenes entregadas

@foreach($orders as $order) @endforeach
Orden # Fecha Subtotal Delivery Cupón Total Comisión
{!! $order->onumber !!} {!! $order->paid_at !!} {!! number($order->subtotal) !!} {!! number($order->delivery_price) !!} -{!! number($order->coupon_value) !!} {!! number($order->total) !!} {!! number($order->commission) !!}
@stop