@extends('layouts.admin.base-dashboard') @section('title', 'List Products') @section('content') @include('layouts.admin.include.message')
Tambah

List Product

@foreach ($products as $product) @endforeach
No Product Code Item Description Brand Stock Price Created At Action
{{ $loop->iteration }} {{ $product->name }} {{ $product->description }} {{ $product->brand->name }} {{ $product->stock }} {{ $product->price }} {{ date('d-m-Y H:i:s', strtotime($product->created_at)) }} Ubah View Image
@endsection