@extends('layouts.master') @section('titel', 'Product | ') @section('content') @include('partials.header') @include('partials.sidebar') Product Table Product Product Table Add Product ID Product Purchase Price Sales Price Actions @foreach($products as $product) {{ $product->id }} {{ $product->name }} {{ $product->purchase_price }} {{ $product->sales_price }} @csrf @method('DELETE') @endforeach @endsection @push('js') @endpush