@extends('layouts.app') @section('title', 'Ver Categoría') @section('content')
{{ $category->name }}
{{ $category->slug }}
{{ $category->description ?: 'Sin descripción' }}
@if($category->icon) {{ $category->icon }} @else fas fa-tag (por defecto) @endif
{{ $category->sort_order }}
Los productos que se asignen a esta categoría aparecerán aquí.
{{ $category->created_at->format('d/m/Y H:i') }}
{{ $category->updated_at->format('d/m/Y H:i') }}
{{ json_encode($category->meta_data, JSON_PRETTY_PRINT) }}