@extends('backend.layout.master') @section('content')

Product List

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