@extends('layouts.app') @section('content')
Products
@if (session('status')) @endif
    @forelse ($products as $product)
  • {{$product['name']}}
  • @empty

    There are no products yet. Include one with the form above.

    @endforelse
Add product
@include('product.addProductForm')
@endsection