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