@extends('backend.admin-master') @section('site-title') {{__('Knowledgebase Topics')}} @endsection @section('style') @endsection @section('content')

{{__('All Knowledgebase Topics')}}

@php $b=0; @endphp @foreach($all_category as $key => $category)
@foreach($category as $data) @endforeach
{{__('ID')}} {{__('Name')}} {{__('Status')}} {{__('Action')}}
{{$data->id}} {{$data->title}} @if('publish' === $data->status) {{ucfirst(__($data->status))}} @else {{ucfirst(__($data->status))}} @endif
@php $b++; @endphp @endforeach

{{__('Add New Topics')}}

@csrf
@endsection @section('script') @endsection