@extends('layouts.admin') @section('page-title','Products') @section('topbar-actions') ⬆️ Bulk Upload + Add Product @endsection @section('content') {{-- FILTER BAR --}}
| Product | Category | Sale Price | Cost | Margin | Stock | Status | Active | |
|---|---|---|---|---|---|---|---|---|
|
@if($product->image_url)
|
{{ $product->category }} | ${{ number_format($product->price,2) }} | ${{ number_format($product->cost_price,2) }} | {{ $product->margin_percent }}% | {{ number_format($product->stock) }} | {{ $ss[1] }} | {{ $product->is_active ? 'Active' : 'Hidden' }} | @if($product->trashed()) @else ✏️ Edit @endif |
| No products found. | ||||||||