@extends('layouts.admin') @section('title', 'Project Details: ' . $project->name) @section('header_title', 'Project Details: ' . $project->name) @section('content')
← Back to Projects

{{ $project->name }}

@if($project->featured_image_url) {{ $project->name }} @endif

Slug: {{ $project->slug }}

Published: {{ $project->is_published ? 'Yes' : 'No' }}

Sort Order: {{ $project->sort_order }}

@if($project->short_description)

Short Description:

{{ $project->short_description }}

@endif @if($project->full_description)

Full Description:

{!! nl2br(e($project->full_description)) !!}
{{-- Basic display, consider Markdown parsing if using Markdown --}} @endif

Links:

@if($project->internal_documentation_content)

Internal Documentation:

{!! nl2br(e($project->internal_documentation_content)) !!}
{{-- Basic display --}} @endif
@endsection