@extends('layouts.app') @section('content')

Product List


@if(count($products) > 0) @foreach($products as $product) @endforeach @else @endif
Product Name Action
{{$product->name}}
Edit 
{{ Form::open(array('url' => route('product.toggle', ['id' => $product->id]), 'method' => 'POST')) }} {{ Form::hidden('_method', 'PATCH') }} {{ Form::close() }}
No Data Found
@endsection