@extends('layouts.app') @php use Illuminate\Support\Str; $metaTitle = $category->meta_title ?: $category->name; $metaDesc = $category->meta_description ?: Str::limit(strip_tags($category->description ?? ''), 160); $metaKeys = $category->meta_keywords ?? null; // dacă ai coloană @endphp @section('title', $metaTitle) @section('meta_description', $metaDesc) @if($metaKeys) @section('meta_keywords', $metaKeys) @endif @section('canonical', route('category.show', $category->slug)) @push('styles') @endpush @section('content')