@extends('layout.app')
@section('content')
| # |
Product Name |
Unit |
Stock |
Description |
price |
Actions |
@forelse ($products as $index => $item)
| {{ $index + 1 }} |
{{ $item->product_name }} |
{{ $item->unit }} |
{{ $item->stock }} |
{{ $item->description }} |
{{ $item->price }} |
|
@empty
|
No products added yet.
|
@endforelse
@endsection