@extends('layout') @section('dashboard-content')

Products

Add New Product
@foreach($products as $product) @endforeach
Image Product Name Category Quantity Description Action
{{ $product->product }} {{ !empty($product->category) ? $product->category->category_name : '' }} {{ $product->quantity }} {{ $product->description }} |
@stop