@extends('backend.admin-master') @section('style') @endsection @section('site-title') {{__('All Knoledgebase Article')}} @endsection @section('content')

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

@php $b=0; @endphp @foreach($all_article as $key => $article)
@foreach($article as $data) @endforeach
{{__('ID')}} {{__('Title')}} {{__('Topics')}} {{__('Views')}} {{__('Status')}} {{__('Created At')}} {{__('Action')}}
{{$data->id}} {{$data->title}} {{get_topic_name_by_id($data->topic_id) ? get_topic_name_by_id($data->topic_id) : __('Uncategorized') }} {{$data->views}} @if($data->status == 'draft') {{__('Draft')}} @else {{__('Publish')}} @endif {{date_format($data->created_at,'d - m - Y')}}
@csrf
@php $b++; @endphp @endforeach
@endsection @section('script') @endsection