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

Products

Add Product
@foreach($products as $product) @endforeach
ID Name Price Stock Action
{{ $product->id }} {{ $product->name }} {{ $product->price }} {{ $product->stock }} {{ $product->unitLabel() }} Edit
@csrf @method('DELETE')
@endsection