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

Add Category

@csrf
@foreach ($categories as $category) @endforeach
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() !!}
@endsection