@extends('layouts.app') @section('title', 'Products') @section('content')

Products

@foreach($products as $product) @endforeach
Product SKU Category Brand Stock Actions
{{ $product->product_name }}
{{ $product->description }}
{{ $product->sku }} {{ $product->category->cat_name ?? '' }} {{ $product->brand->brand_name ?? '' }} {{ $product->initial_stock }}
@csrf @method('DELETE')
@push('styles') @endpush @push('scripts') @endpush @endsection