@extends('layouts.app')
@section('content')
Add Products
id | image | Name | Action | ||
---|---|---|---|---|---|
{{ $product->id }} | |
{{ $product->productname }} |
{!! Form::open(['route' => ['deleteproduct', $product->id], 'method' => 'post']) !!}
{!! Form::button('', [
'type' => 'submit',
'class' => 'btn btn-danger btn-xs',
'onclick' => "return confirm('Are you sure?')",
]) !!}
{!! Form::close() !!}
|