@extends('layouts.app') @php function hexToRgb($hex) { $hex = ltrim($hex, '#'); if (strlen($hex) == 3) { $hex = $hex[0] . $hex[0] . $hex[1] . $hex[1] . $hex[2] . $hex[2]; } $r = hexdec(substr($hex, 0, 2)); $g = hexdec(substr($hex, 2, 2)); $b = hexdec(substr($hex, 4, 2)); return "$r, $g, $b"; } @endphp @section('title', $category->name) @section('content')
{{ $category->description }}