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

Products

Add Product
@foreach($products as $p) @endforeach
Image Name Price Qty Status Actions
{{ $p->name }} ${{ $p->price }} {{ $p->quantity }} @if($p->quantity == 0) Out of Stock @elseif($p->quantity < 5) Low Stock @else In Stock @endif Edit
@csrf @method('DELETE')
@endsection