@extends('layouts.dashboard') @section('title', 'Products') @section('page-title', 'Product Management') @section('breadcrumb') @endsection @section('content')
All Products
Add New Product
@if($products->count() > 0)
@foreach($products as $product) @endforeach
ID Image Name Category Price Stock Actions
{{ $product->id }} @if($product->image_path) {{ $product->name }} @else
@endif
{{ $product->name }} @if($product->is_featured) Featured @endif {{ $product->category }} ${{ number_format($product->price, 2) }} @if($product->stock_quantity > 10) {{ $product->stock_quantity }} @elseif($product->stock_quantity > 0) {{ $product->stock_quantity }} @else Out of stock @endif
{{ $products->links() }}
@else
No products found. Add your first product.
@endif
@endsection