@extends('admin.layouts.app') @section('title', (isset($content->name) ? $content->name : ''). ' Category') @section('page_css') @endsection @section('section')

Category Detail

ID {{$content->id??''}}
Category {{$content->name??''}}
Parent Category {{$content->sub_category->name ?? 'N/A'}}
Slug {{$content->category_slug??''}}
Description {{$content->description??''}}
Meta Tag Title {{$content->meta_tag_title??''}}
Meta Tag Keywords {{$content->meta_tag_keywords??''}}
Image @if(!empty($content->category_image) && file_exists('uploads/category/'.$content->category_image)) @else Image is not available @endif
@endsection