@extends('layout.app') @section('content')

Products

Add Product
@forelse ($products as $index => $item) @empty @endforelse
# Product Name Unit Stock Description price Actions
{{ $index + 1 }} {{ $item->product_name }} {{ $item->unit }} {{ $item->stock }} {{ $item->description }} {{ $item->price }}
@csrf @method('DELETE')
No products added yet.
@endsection