@extends('temas.theme-five.layout') @section('titulo-pagina') @if(!empty($site->informacao->nome_comercial)) {{ $site->informacao->nome_comercial }} - Sobre o escritório @else Sobre o escritório @endif @endsection @section('imagem-header') @if($conteudo->conteudos()->where('tipo','banner_pagina')->first()) '{{route('arquivo.show',$conteudo->conteudos()->where('tipo','banner_pagina')->first()->imagem)}}' @else '{{asset('theme-five/img/bg.jpg')}}' @endif @endsection @section('menu-sobre') active @endsection @section('header-set') @if($conteudo->conteudos()->where('tipo','banner_pagina') ->first())
@else
@endif @endsection @section('header') @if($conteudo->conteudos()->where('tipo','titulo_sobre')->first())

{!! $conteudo->conteudos()->where('tipo','titulo_sobre')->first()->descricao !!}

@else

SOBRE O ESCRITÓRIO

@endif @endsection @section('container')
@if( $conteudo->conteudos()->where('tipo','texto_sobre')->first())
{!! $conteudo->conteudos()->where('tipo','texto_sobre')->first() ->descricao !!}
@else

Dotado de uma estrutura ágil, abrangente, com os melhores recursos humanos e tecnológicos do mercado, nosso escritório está plenamente apto a atender às demandas e aos interesses de seus clientes, com dedicação, lealdade e eficiência de resultados, razões pelas quais alcançou prestígio e respeitabilidade no mercado.

Por meio de grupos de estudos e pesquisas, o escritório atua na vanguarda perante os Tribunais do país, contribuindo com a consolidação da jurisprudência, bem como em sintonia com os principais doutrinadores das áreas nas quais atua.

A equipe possui habilidades múltiplas para oferecer as melhores soluções aos seus clientes, com uma equipe de advogados de sólida formação e comprovada experiência profissional.

@endif
@foreach($conteudo ->conteudos() ->where('tipo','profissional') ->get() as $key => $profissional)
@empty(!$profissional ->imagem) @else @endempty

{{$profissional->nome}}

{!!$profissional->descricao!!}
{{ csrf_field() }}
@endforeach
{{-- titulo_sobre --}} @include('temas.componentes.texto.create',[ 'conteudo' => $conteudo, 'label' => 'Título', 'id' => 'titulo_sobre_modal_create', 'tipo' => 'titulo_sobre', ]) @if($conteudo->conteudos()->where('tipo','titulo_sobre')->first()) @include('temas.componentes.texto.edit',[ 'conteudo' => $conteudo->conteudos()->where('tipo','titulo_sobre')->first(), 'label' => 'Título', 'id' => 'titulo_sobre_modal_edit', 'tipo' => 'titulo_sobre', ]) @endif {{-- texto_sobre --}} @include('temas.componentes.textarea.create',[ 'conteudo' => $conteudo, 'label' => 'Texto', 'id' => 'texto_sobre_modal_create', 'tipo' => 'texto_sobre', ]) @if($conteudo->conteudos()->where('tipo','texto_sobre')->first()) @include('temas.componentes.textarea.edit',[ 'conteudo' => $conteudo->conteudos()->where('tipo','texto_sobre')->first(), 'label' => 'Texto', 'id' => 'texto_sobre_modal_edit', 'tipo' => 'texto_sobre', ]) @endif @include('temas.componentes.imagem.create',[ 'conteudo' => $conteudo, 'label' => 'Imagem de fundo', 'id' => 'banner_pagina_modal_create', 'tipo' => 'banner_pagina', 'width' => '1920', 'height' => '227' ]) @if($conteudo->conteudos()->where('tipo','banner_pagina')->first()) @include('temas.componentes.imagem.edit',[ 'conteudo' => $conteudo->conteudos()->where('tipo','banner_pagina')->first(), 'label' => 'Imagem de fundo', 'id' => 'banner_pagina_modal_edit', 'tipo' => 'banner_pagina', 'width' => '1920', 'height' => '227' ]) @endif {{-- Profissionais --}} @include('temas.componentes.profissional.create',[ 'conteudo' => $conteudo, 'label' => 'Um breve texto sobre o profissional', 'id' => 'profissional_modal_create', 'tipo' => 'profissional', ]) @if($conteudo->conteudos()->where('tipo','profissional')->first()) @foreach($conteudo -> conteudos() ->where('tipo','profissional') ->get() as $profissional) @include('temas.componentes.profissional.edit',[ 'conteudo' => $profissional, 'label' => 'Um breve texto sobre o profissional', 'id' => 'profissional_modal_edit_'.$profissional ->id, 'tipo' => 'profissional', ]) @endforeach() @endif @endsection