@extends('front.layouts.app') @section('content') {{-- ==================== PROJECT SECTION ==================== --}}

{{ __('Our Project') }}

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Discover our latest works.

{{-- Tabs --}}
@foreach ($categories as $category) @endforeach
{{-- Grid --}}
@forelse($projects as $index => $project) @php $catSlugs = $project->categories->pluck('slug')->toArray(); $dataCat = !empty($catSlugs) ? implode(' ', $catSlugs) : 'uncategorized'; $payload = [ 'id' => $project->id, 'title' => $project->title, 'short' => nl2br(e($project->short_description)), 'description' => $project->description ? nl2br(e($project->description)) : '', 'location' => $project->location, 'year' => $project->year_completed, 'imageAlt' => $project->image_alt ?? $project->title, 'images' => !empty($project->image_path) ? (is_array($project->image_path) ? $project->image_path : [$project->image_path]) : [], 'currentIdx' => 0, 'index' => $index, ]; @endphp
{{ $project->image_alt ?? $project->title }}

{{ $project->title }}

@empty

{{ __('No projects found.') }}

@endforelse
{{-- DYNAMIC DOTS --}}
{{-- ==================== PREMIUM MODAL ==================== --}} @endsection