@extends('layouts.admin') @section('title', 'Products') @section('page-title', 'Products') @push('styles') @endpush @section('content')

All Products

Add Product
@foreach($products as $product) @endforeach
ID Name Category Section Price Sale Price SKU Status Actions
{{ $product->id }} {{ $product->name }} {{ $product->category->name }} {{ $product->section?->title ?? '-' }} ${{ number_format($product->price, 2) }} @if($product->sale_price) ${{ number_format($product->sale_price, 2) }}
{{ $product->getDiscountPercentage() }}% OFF
@else @endif
{{ $product->sku }}
@csrf @method('DELETE')
@endsection @push('scripts') @endpush