@extends('layouts._site.main') @section('title', 'Ecofemenino - Projetos Divulgados') @section('content')
{{-- Alerta de sucesso (caso venha da home) --}} @if (session('success'))
{{ session('success') }}
@endif {{-- Lista de projetos --}}
@forelse ($projects as $project)
{{-- Imagem principal --}}
@if ($project->images->count()) {{ $project->project_name }} @else Projeto sem imagem @endif
{{-- Conteúdo --}}
{{ $project->project_name }}

Responsável: {{ $project->responsible }}

Categoria: {{ ucfirst($project->category) }}

{{ Str::limit($project->description, 120, '...') }}

{{-- Botão de detalhes --}} Ver Detalhes {{-- Botão de contacto dinâmico --}} @php $whatsNumber = $project->phone ? preg_replace('/\D+/', '', $project->phone) : null; $whatsLink = $whatsNumber ? 'https://wa.me/' . $whatsNumber : null; @endphp @if ($whatsLink) WhatsApp @elseif ($project->email) E-mail @endif
@empty

Ainda não há projetos divulgados.

@endforelse
{{-- Estilos locais --}} @endsection