@extends('admin.layouts.app', ['title' => __('Category')]) @section('content')
| Name | {{$category->name}} |
|---|---|
| Description | {{$category->description}} |
| Image |
@if(!empty($category->image) && \Illuminate\Support\Facades\Storage::exists($category->image))
@endif
|