@extends('layouts.master_app') @section('title') Agregar venta @endsection @section('css') @endsection @section('content')
Ventas
@include('partials.errors') @csrf
No existe stock para realizar la venta
Buscando producto
Total: @{{ formData.quantity * sale_price | currency}}
@{{product_point.product.name}}
Stock: @{{ product_point.stock - formData.quantity }}
@endsection @section('js') @endsection