@foreach ($sections as $section) @if ($section->key == 'projects') @include('Website.partials._banner', ['page_title' => $project->name]) @endif @endforeach
{{ $project->name }}
{{ $project->category->name }}

{{ $project->name }}

{!! $project->long_desc !!}

@php $projectImages = $project->images; $allImages = collect(); // Add main project image if exists if($project->image_path && $project->image_path != asset('assets/dashboard/images/noimage.png')) { $allImages->push($project->image_path); } // Add additional project images foreach($projectImages as $img) { $imgUrl = $img->image; if($imgUrl && $imgUrl != asset('assets/dashboard/images/noimage.png') && !$allImages->contains($imgUrl)) { $allImages->push($imgUrl); } } @endphp @if($allImages->count() > 0) @endif @push('styles') @endpush @push('scripts') @endpush