{{-- Success Message --}} @if (session('success')) @endif {{-- Error Message --}} @if ($errors->any())
@endif
← Back

{{ $project->project_name }}

{{ $project->category }}

@php $image = $project->project_image1; $video = $project->project_video; @endphp
@if ($image) @elseif ($video) @else

No media available

@endif
@if (!empty($project->short_introduction))

Introduction

{{ $project->short_introduction }}

@endif @if (!empty($project->key_highlights))

Key Highlights

    @foreach (json_decode($project->key_highlights, true) as $highlight)
  • {{ $highlight }}
  • @endforeach
@endif @if (!empty($project->location))

Location

{{ $project->location }}

@endif

Status

{{ $project->status }}

More Images

@for ($i = 2; $i <= 5; $i++) @php $image = 'project_image' . $i; @endphp @if (!empty($project->$image))
@endif @endfor