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

Cajero Vender

Carta

@if(count($productos)) @foreach ($productos as $key => $producto) @endforeach
Nombre Categoria Precio Cash App
{{ $producto->nombre }} {{ $producto->categoria->nombre }} $ {{ number_format($producto->precio, 0, '', '.') }}
@else

No Existen Registros


@endif
@foreach ($productos as $producto) @endforeach @endsection @section('javascript') @endsection