@extends('admin.layout') @php $selLang = \App\Models\Language::where('code', request()->input('language'))->first(); @endphp @if(!empty($selLang) && $selLang->rtl == 1) @section('styles') @endsection @endif @section('content')
{{__('Categories')}}
@if (!empty($langs)) @endif
@if (count($bcategorys) == 0)

{{__('NO BLOG CATEGORY FOUND')}}

@else
@foreach ($bcategorys as $key => $bcategory) @endforeach
{{__('Name')}} {{__('Status')}} {{__('Serial Number')}} {{__('Actions')}}
{{$bcategory->name}} @if ($bcategory->status == 1)

{{__('Active')}}

@else

{{__('Deactive')}}

@endif
{{$bcategory->serial_number}} {{__('Edit')}}
@csrf
@endif
@endsection