@extends('layouts.main') @php $titles = \App\Modules\Projects\Models\LibraryItem::getCategories(); $catLabel = $titles[$category] ?? 'Раздел'; @endphp @section('title', $catLabel) @section('content')

{{ $catLabel }}

@forelse($items as $item)
{{ $item->title }}

{{ $item->title }}

{{ strlen($item->description) > 100 ? substr($item->description, 0, 100) . '…' : $item->description }}

Читать далее →
@empty

В разделе «{{ $catLabel }}» пока нет материалов.

@endforelse @endsection