@extends('admin.layout') @section('content')

{{ __('Blog Category') }}

{{ __('Blog Category List') }}

{{ __('Add') }}
@foreach ($bcategories as $id=>$bcategory) @endforeach
{{ __('Name') }} {{ __('Order') }} {{ __('Status') }} {{ __('Action') }}
{{ $bcategory->name }} {{ $bcategory->serial_number }} @if($bcategory->status == 1) {{ __('Publish') }} @else {{ __('Unpublish') }} @endif {{ __('Edit') }}
@csrf
@endsection