@extends('layouts.master') @section('titel', 'Product | ') @section('content') @include('partials.header') @include('partials.sidebar')

Product Table

Add Product
@foreach($products as $product) @endforeach
ID Product Purchase Price Sales Price Actions
{{ $product->id }} {{ $product->name }} {{ $product->purchase_price }} {{ $product->sales_price }}
@endsection @push('js') @endpush