@extends('super_admins.layouts.master') @section('title') View Blog Category @endsection @section('css') @endsection @section('content') @if ($errors->any()) @endif

Blog Category

Name

{{ $blog_category->name ? $blog_category->name : '--' }}

Image

@if ($blog_category->image) {{ $blog_category->slug }} @else -- @endif

Slug

{{ $blog_category->slug ? $blog_category->slug : '--' }}

Status

{{ $blog_category->is_active ? 'Active' : 'Inactive' }}

Created At

{{ date_format($blog_category->created_at, 'd-m-Y') }}

Description

{!! $blog_category->description !!}

@endsection @section('scripts') @endsection