@extends('layouts.webpage.main_two') @section('page-title', 'Projects') @section('content')
{{-- Main Heading --}}

Project Details

@php $defaultBrochure = 'uploads/brochures/1766551813_1764931665_Meking E-Brochure (1).pdf'; $brochurePath = $project->button_link ? 'uploads/project_brochures/' . $project->brochure : $defaultBrochure; @endphp Download Brochure Get a Quote

{{ $project->title ?? 'Project Title' }}

{{ $project->location ?? 'Project Location' }}

About the Project

{{ $project->content ?? 'Project description not available.' }}

Location

{{ $project->location ?? 'N/A' }}

Duration

{{ $project->duration ?? 'N/A' }}

Client

{{ $project->client_name ?? 'N/A' }}

@if(!empty($project->project_desc))

Key Features

@php // Split text by double newlines to separate each feature $features = preg_split("/\n\s*\n/", trim($project->project_desc)); @endphp @foreach($features as $feature) @php // Split each feature into title and description (by first newline) $lines = explode("\n", trim($feature), 2); $title = $lines[0] ?? ''; $desc = $lines[1] ?? ''; @endphp
{{ $title }}

{{ $desc }}

@endforeach
@endif
@endsection