@extends('layouts.app') @section('title', $project['title'] . ' | IBS Projects') @section('description', $project['description']) @section('content')

Project Overview

{{ $project->description }}

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

Scope of Work

    @foreach($project->scope as $item)
  • {{ $item }}
  • @endforeach
@endif {{-- Dynamic Content Area (e.g., more detailed description, challenges, solutions) --}} @if(!empty($project->details))

Detailed Description

{!! $project->details !!}
@endif

Project Information

  • Client: {{ $project->client }}
  • Location: {{ $project->location }}
  • Timeline: {{ $project->timeline }}
  • Completed: {{ $project->completed_date ? $project->completed_date->format('M d, Y') : 'N/A' }}
{{-- Key Features/Highlights Section --}} @if(!empty($project->highlights))

Key Highlights

    @foreach($project->highlights as $highlight)
  • {{ $highlight }}
  • @endforeach
@endif
@if($project->images->isNotEmpty())
@foreach($project->images as $image) Project Image @endforeach
@endif @endsection