@extends('layouts.site') @section('title') {{$projeto->titulo}} {{env('APP_NAME')}} @endsection @section('content')

{{$projeto->titulo}}

{!! $projeto->descricao !!}
  • Data : {{$projeto->dataExeculcao->format('d/m/Y')}}
  • Cliente : {{$projeto->nomeCliente}}
  • Status : {{$projeto->statusObra}}
  • Localização : Acessar Mapa
    @php $projetoanterior = \App\Models\Obras::where('status','Ativo')->where('id',$projeto->id - 1)->first(); $projetoposterior = \App\Models\Obras::where('status','Ativo')->where('id',$projeto->id + 1)->first(); @endphp @if(isset($projetoanterior->id))
  • @endif @if(isset($projetoanterior->id) and isset($projetoanterior->id))
  • /
  • @endif @if(isset($projetoposterior->id))
  • @endif
@include ('site.repeat.footer')
@endsection @section('script') @endsection