@extends('layouts.dashboard.layout') @section('content')
@if(Session::has('flash_message_error'))
{!! session('flash_message_error') !!}
@endif @if(Session::has('flash_message_success'))
{!! session('flash_message_success') !!}
@endif

Product List

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