@include('htmlpage.frontent.layout.app')
@if ($galleries->count() == 1)
@else
@if ($galleries->isNotEmpty()) @foreach ($galleries as $gallery)
@endforeach @else

No galleries found for this project.

@endif
@endif

{{ $project->categoryModel->category }}

{{ $project->project_name }}

Client: {{ $project->client_name }}

Building Area: {{ $project->area }}

Project Status: @if($project->project_status == 1) Completed @elseif($project->project_status == 2) Proposed @elseif($project->project_status == 3) Ongoing @else Unknown @endif

Project Description: {!! $project->description !!}

@if (strpos($project->location_url, 'https://maps.app.goo.gl/') === 0)
{{ $project->location_url }}
@endif

What are the
Frequently Asked Questions?

@foreach ($faqs as $index => $faq) @if ($index < count($faqs) / 2)

{{ $faq->answer }}
@endif @endforeach
@foreach ($faqs as $index => $faq) @if ($index >= count($faqs) / 2)

{{ $faq->answer }}
@endif @endforeach
Back
@include('htmlpage.frontent.layout.footer')