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

{{ $category->name }}

Parent: {{ $category->parent ? $category->parent->name : 'None' }}

Active: {{ $category->active ? 'Yes' : 'No' }}

Hours: {{ $category->hours ?? 'N/A' }}

Cuisine: {{ $category->cuisine ?? 'N/A' }}

Rating: {{ $category->rating ?? 'N/A' }}

Address: {{ $category->address ?? 'N/A' }}

@if($category->thumb)

Thumbnail:

{{ $category->name }} @endif @if($category->header)

Header Image:

{{ $category->name }} @endif

Description:

{!! $category->description !!}
Edit
@csrf @method('DELETE')
Back
@endsection