@extends('layouts.admin') @section('content')

All Products

@if(Session::has('status'))

{{ Session::get('status') }}

@endif @forelse ($products as $product) @empty @endforelse
No Nama Harga Harga Jual SKU Kategori Brand Dipilih Stok Quantity Action
{{ $loop->iteration + ($products->currentPage() - 1) * $products->perPage() }}
@if($product->image) {{ $product->name }} @else No image @endif
{{ $product->name }}
{{ $product->slug }}
Rp{{ number_format($product->regular_price, 0, ',', '.') }} Rp{{ number_format($product->sale_price, 0, ',', '.') }} {{ $product->SKU }} {{ $product->category->name ?? '-' }} {{ $product->brand->name ?? '-' }} {{ $product->featured ? 'Yes' : 'No' }} {{ $product->stock_status }} {{ $product->quantity }}
@csrf @method('DELETE')
No products found.
{{ $products->links('pagination::bootstrap-5') }}
@endsection @push('scripts') @endpush