{{-- @extends('admin.layouts.master') @section('content')

{{ __('Blogs') }}

{{ __('Blog List') }}

{{ __('Add') }}
@foreach ($blogs as $id => $blog) @endforeach
{{ __('Image') }} {{ __('Title') }} {{ __('Category') }} {{ __('Content') }} {{ __('Status') }} {{ __('Action') }}
{{ json_decode($blog->title)->en }} {{ $blog->bcategory ? json_decode($blog->bcategory->name)->en : 'N/A' }} {{ json_decode($blog->content)->en }} @if ($blog->status == 1) {{ __('Publish') }} @else {{ __('Unpublish') }} @endif {{ __('Edit') }}
@csrf @method('get')
@endsection --}}