@extends('layouts.admin') @section('page-title') {{ __('Manage KnowledgeBase Category') }} @endsection @section('breadcrumb') @endsection @section('multiple-action-button') @can('create-knowledgecategory')
@endcan @endsection @section('content')
@foreach ($knowledges_category as $index => $knowledge) @endforeach
# {{ __('Title') }} {{ __('Action') }}
{{ ++$index }} {{ $knowledge->title }} @can('edit-knowledgecategory') @endcan @can('delete-knowledgecategory')
@csrf @method('DELETE')
@endcan
@endsection