{{-- Dynamic Header --}} @include('modules.projects.frontend.partials.dynamic-header') {{-- Main Content Section --}}
{{-- Main Content Area --}}
{{-- Project Image Hero - Mobile First --}} @if($project->image)
{{ $project->title }}
@endif {{-- Project Title - Mobile Optimized --}}

{{ $project->title ?? 'Proyecto' }}

{{-- Quick Info Bar - Mobile --}}
@if($project->created_at)
{{ $project->created_at->format('M Y') }}
@endif
Completado
{{-- Project Meta Info (Categories & Tags) - Mobile Optimized --}} @if($project->categories && $project->categories->count() > 0 || $project->tags && $project->tags->count() > 0)
@if($project->categories && $project->categories->count() > 0)
Categorías:
@foreach($project->categories as $category) {{ $category->name }} @endforeach
@endif @if($project->tags && $project->tags->count() > 0)
Tags:
@foreach($project->tags as $tag) {{ $tag->name }} @endforeach
@endif
@endif
{{-- Project Description --}}

Descripción del Proyecto

@if($project->description)
{!! nl2br(e($project->description)) !!}
@else

Descripción detallada disponible próximamente.

@endif
{{-- External Link if available --}} @if($project->url)
@endif
{{-- Sidebar - Desktop Only, Mobile Hidden --}}
{{-- Project Info Card - Desktop Only --}}
Información del Proyecto
  • Código: #{{ str_pad($project->id, 4, '0', STR_PAD_LEFT) }}
  • Estado: Completado
  • Fecha: {{ $project->created_at->format('d/m/Y') }}
  • @if($project->categories && $project->categories->count() > 0)
  • Categorías:
    @foreach($project->categories as $category) {{ $category->name }} @endforeach
  • @endif
{{-- Quick Contact Card --}} {{--

¿Te Interesa?

Contacta con nosotros para más información sobre este proyecto

--}} {{-- Share Project Card - Desktop Only --}}
Compartir Proyecto
{{-- Share Section - Mobile Only --}}
{{-- Related Projects Section - Carousel --}} @if($relatedProjects && $relatedProjects->count() > 0) @endif