@extends('admin.layouts.app') @section('content')
ID | Product Name | Product Price | Product Image | Status | Action |
---|---|---|---|---|---|
{{$product->id }} | {{ucfirst($product->product_name)}} | {{ $product->product_discount_price }} |
|
{{ Form::open(['route' => ['product.destroy', $product->id], 'method' => 'delete']) }}
{{ Form::button('', [ 'type' => 'submit', 'class' => 'btn btn-dim btn-danger']) }}
{{ Form::close() }}
|