@extends('layouts.dashboard.layout')
@section('content')
| ID |
Product Name |
State |
Price |
Image |
Description |
SKU |
Action |
@foreach($data as $key => $item)
| {{$item['id']}} |
{{$item['product_name']}} |
{{$item['state']}} |
{{$item['price']}} |
 }}) |
{{$item['description']}} |
{{$item['sku']}} |
|
@endforeach
@endsection