@extends('layouts.web') @section('css') @endsection @section('content') @component('web.components.layout.banner_pages', [ 'title' => $treatment->publication->title, 'style' => 'background-image: url(' . asset('images/placeholder/web/banner-tratamentos.webp') . ')', ]) @endcomponent @component('web.components.default.section', [ 'class' => 'treatment', ])
@include('web.components.pages.treatment.menu')
@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, // 'class' => 'w-100', ], ])
@endif

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

{!! $treatment->publication->content !!}
@if ($treatment->symptoms)

Sintomas

    @foreach ($treatment->symptoms as $symptoms)
  • {{ $symptoms }}
  • @endforeach
@endif @if ($treatment->treat)

Tratamentos

{!! $treatment->treat !!}
@endif
@endcomponent @endsection