@extends('layouts.app') @section('css') @endsection @section('content')

listado de productos

@include('flash::message')
@foreach ($categorias as $key => $categoria)
@include('productos.table') {{-- //TODO:Paginar --}}
@endforeach
@if(count($productos) > 0) @foreach ($productos as $item) @endforeach @else

Sin productos de tipo venta

@endif
@if(count($productos->where('tipo','cortesia')) > 0) @foreach ($productos->where('tipo','cortesia') as $item) @endforeach @else

Sin productos de tipo venta

@endif
@if(count($productos_sin_existencias) > 0) @foreach ($productos_sin_existencias as $item) @endforeach @else

Sin productos para esta categoría

@endif
@endsection @section('scripts') @endsection