@push('styles') @endpush

{{ __('Produtos') }}

Novo Produto
@if (session('success'))
{{ session('success') }}
@endif
@forelse ($products as $product) @empty @endforelse
Foto Nome SKU/EAN Categoria Preço Estoque Ações
@if($product->image) {{ $product->name }} @else
@endif
{{ $product->name }}
@if($product->description) {{ Str::limit($product->description, 50) }} @endif
@if($product->sku) {{ $product->sku }} @endif @if($product->ean)
{{ $product->ean }} @endif
@if($product->category) {{ $product->category }} @else - @endif
R$ {{ number_format($product->price, 2, ',', '.') }}
@if($product->cost) Custo: R$ {{ number_format($product->cost, 2, ',', '.') }} @endif
{{ $product->current_stock }} un @if($product->current_stock <= $product->stock_min) @endif
Mín: {{ $product->stock_min }} @if($product->available_stock != $product->current_stock)
Disp: {{ $product->available_stock }} un @endif
Nenhum produto encontrado

Comece adicionando seu primeiro produto

Adicionar Produto
@if($products->hasPages())
{{ $products->links() }}
@endif