@extends('admin.layouts.app') @section('title', 'Produtos') @section('header', 'Produtos') @section('content')
| Produto | Categoria | Preço | Estoque | Status | Ações |
|---|---|---|---|---|---|
|
@if($product->images->where('is_main', true)->first())
{{ $product->name }} {{ $product->sku }} |
{{ $product->category->name ?? '-' }} |
@if($product->discount_price)
R$ {{ number_format($product->discount_price, 2, ',', '.') }} R$ {{ number_format($product->price, 2, ',', '.') }} 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
|
|
| Nenhum produto encontrado. | |||||