@extends('layouts.admin') @section('title') @lang('Blog Categories') @endsection @section('breadcrumb')

@lang('Blog Categories')

@endsection @section('content')
@forelse ($categories as $item) @empty @endforelse
@lang('Name') @lang('Slug') @lang('Status') @lang('Action')
{{$item->name}} {{$item->slug}} @if ($item->status == 1) @lang('Active') @else @lang('Inactive') @endif
@lang('No Data Found')
@endsection @push('script') @endpush