@extends('layouts.web') @section('css') @endsection @section('content') @component('web.components.layout.banner_pages', [ 'title' => 'Tratamentos', 'style' => 'background-image: url(' . asset('images/placeholder/web/banner-tratamentos.webp') . ')', ]) @endcomponent @component('web.components.default.section', [ 'class' => 'treatments', 'label' => 'Tratamentos', ]) @forelse ($treatments as $treatment)
@if (!empty($treatment->cover->path)) @include('web.components.default.medias.image', [ 'media' => [ 'path' => $treatment->cover->path, 'placeholder' => 'images/placeholder/web/logo-placeholder.png', 'alt' => 'Ícone do tratamento de ' . $treatment->publication->title, 'styleImg' => 'border-radius: 20px;', ], ]) @endif

{{ $treatment->publication->title }}

{!! \Str::limit($treatment->publication->summary, 160) !!}
Saiba mais
@empty @include('web.components.default.publication.publication_empty', [ 'message' => 'Nenhum tratamento cadastrado.', ]) @endforelse
{{ $treatments->links('pagination::bootstrap-5') }}
@endcomponent @endsection