@extends('layouts.app')
@section('titulo', 'Dashboard')
@section('css')
@endsection
@section('content')
Mes:
Día:
INVENTARIO DE MATERIA PRIMA
@foreach($itemsInventarioEnvibol as $i)
{{ $i->nombre }} ({{ $i->unidad_medida }})
@endforeach
@foreach($itemsInventarioEnvibol as $i)
{{ $i->nombre }} ({{ $i->unidad_medida }})
@endforeach
CONSUMO SERVICIOS
@foreach($itemsServiciosEnvibol as $s)
{{ $s->nombre }} ({{ $s->unidad_medida }})
@endforeach
HORAS PRODUCIDAS
{{ $itemHorasProducidasEnvibol[0]->nombre }} ()
INVENTARIO DE PRODUCTO
@foreach($itemsInventarioProductoEnvibol as $i)
{{ $i->nombre }} ({{ $i->unidad_medida }})
@endforeach
@endsection
@section('scripts')
@endsection