@extends('admin.layouts.app') @section('title', 'Produtos') @section('header', 'Produtos') @section('content')
Novo Produto Importar CSV
Limpar
@forelse($products as $product) @empty @endforelse
Produto Categoria Preço Estoque Status Ações
@if($product->images->where('is_main', true)->first()) {{ $product->name }} @else
@endif

{{ $product->name }}

{{ $product->sku }}

{{ $product->category->name ?? '-' }} @if($product->discount_price)

R$ {{ number_format($product->discount_price, 2, ',', '.') }}

R$ {{ number_format($product->price, 2, ',', '.') }}

@else

R$ {{ number_format($product->price, 2, ',', '.') }}

@endif
{{ $product->stock ?? 0 }} unidades
@if($product->is_active) Ativo @else Inativo @endif @if($product->is_featured) Destaque @endif
@csrf @method('DELETE')
Nenhum produto encontrado.
@if($products->hasPages())
{{ $products->appends(request()->query())->links() }}
@endif
@endsection