@extends('frontend.layouts.app') @section('title', $title) @section('description', $description) @section('content') @php $assetPath = fn (string $path) => asset('frontend/' . ltrim($path, '/')); @endphp @include('frontend.layouts.breadcrumb', ['title' => 'Project Details'])
{{ $project->title }}

{{ $project->title }}

{!! $project->content ?: '

'.e($project->description ?: 'Project details will be added from the admin side.').'

' !!}
@unless(\Illuminate\Support\Str::contains((string) $project->content, 'Project Benefits

Each project is shaped around practical operations, secure data handling, and measurable improvements for the client team.

@endunless
Workflow Discovery
Delivery Planning
Tags:
  • {{ strtolower($project->department?->name ?? 'project') }}
  • {{ strtolower($project->status_label ?? 'active') }}
@if($relatedProjects->count() > 0)
@foreach($relatedProjects as $relatedProject)
{{ $relatedProject->title }}
{{ strtoupper($relatedProject->department?->name ?? 'PROJECT') }}

{{ $relatedProject->title }}

@endforeach
@endif @include('frontend.partials.newsletter') @endsection