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