@extends('admin/layout') @section('page_title', 'Product') @section('product_select','active') @section('container') @if(session()->has('message'))
{{session('message')}}
@endif

Product

@foreach($data as $list) @endforeach
ID Name Slug Image Action
{{$list->id}} {{$list->name}} {{$list->slug}} @if($list->image!='') @endif @if($list->status==1) @elseif($list->status==0) @endif
@endsection