@extends('layouts/contentNavbarLayout') @section('title', 'Product List') @section('page-style') @endsection @section('content')
| # | Product Name | Price | Description | Actions |
|---|---|---|---|---|
| {{ $loop->iteration }} |
{{ $product->name }} |
${{ $product->price ?? '0' }} | {{ $product->description }} |
|