@extends('layouts.master') @section('title', 'Eventos') @section('content')

Informe {{ $evento->nombre }} {{ date('d/m/Y',strtotime($evento->fecha)) }}

Detalle Barra

@if(count($comandas))
@foreach ($comandas as $key => $comanda) @if($comanda->medio_id != 4) @else @endif @endforeach
Hora Nombre Cliente Medio Cantidad Precio
{{ date('H:i', strtotime($comanda->created_at)) }} {{ @$comanda->producto->nombre }} {{ $comanda->nombre }} {{ $comanda->medio->nombre }} {{ $comanda->cantidad }}$ {{ number_format($comanda->total, 0, ',', '.') }}$ {{ number_format($comanda->total, 0, ',', '.') }}
Total Cobrado {{ $cantidadComandasPagas }} $ {{ number_format($totalComandasPagas, 0, ',', '.') }}
Total Free {{ $cantidadComandasFree }} $ {{ number_format($totalComandasFree, 0, ',', '.') }}
@else

No Existen Registros


@endif
@endsection