@extends('layouts.main') @section('title', $project->t('title')) @section('content')
{{ $project->category }}

{{ $project->t('title') }}

{{ __t('Client') }}: {{ $project->client ?? 'N/A' }}
{{ __t('Location') }}: {{ $project->location ?? 'N/A' }}
@if($project->finished_date)
{{ __t('Finished') }}: {{ $project->finished_date->format('M Y') }}
@endif
@if($project->image)
{{ $project->t('title') }}
@endif

{{ __t('Project Overview') }}

{!! $project->t('content') !!}
@if($project->images->count() > 0)

{{ __t('Project Gallery') }}

@foreach($project->images as $img)
@endforeach
@endif
@if($project->brochure)

{{ __t('Technical Brochure') }}

{{ __t('Download the detailed technical documentation for this gas infrastructure project.') }}

{{ filter_var($project->brochure, FILTER_VALIDATE_URL) ? __t('Open Brochure') : __t('Download PDF') }}
@endif @if($otherProjects->count() > 0)

{{ __t('Other Projects') }}

@endif

{{ __t('Have a Project?') }}

{{ __t('Let us discuss your industrial gas pipeline requirements.') }}

{{ __t('Contact Our Engineers') }} →
@endsection