@extends('backend.layout.master') @section('content') Product List Dashboard Product List Add Product No Product Name Product Slug Created By Status Action @foreach ($products as $key => $product) {{ ++$key }} {{ $product->name }} {{ $product->alias }} {{ $product->owner->name }} @if ($product->isvisible == 1) Enabled @else Disabled @endif {{ csrf_field() }} {{ method_field('DELETE') }} @endforeach @endsection @push('specific_css') @endpush @push('specific_js') @endpush