@extends('layouts.layout-admin')
@section('title', 'Products')
@section('header_title', 'Products')
@section('header_subtitle', 'Manage your products')
@section('content')
Products List
| Image |
Product Name |
Category |
Brand |
Price |
Stock |
Status |
Actions |
@forelse($products as $product)
|
{{ $product['name'] }} |
{{ $product->category->name ?? 'No Category' }} |
{{ $product->brand->name ?? '-' }} |
Rp {{ number_format($product['price'], 0, ',', '.') }} |
{{ $product['stock'] }} |
{{ $product['stock'] > 0 ? 'In Stock' : 'Out of Stock' }}
|
|
@empty
| No products found |
@endforelse
{{ $products->links() }}
@foreach ($products as $product)
@endforeach
@endsection
@push('styles')
@endpush
@push('scripts')
@endpush