@extends('layouts.app') {{-- Or your main frontend layout --}} @section('title', $project->name . ' - ' . setting('app_name', 'Digital Vocano')) @section('content')
← Back to All Projects
@if($project->featured_image_url) {{ $project->name }} @endif

{{ $project->name }}

@if($project->short_description)

{{ $project->short_description }}

@endif
{!! nl2br(e($project->full_description)) !!} {{-- Basic display, consider Markdown parsing for richer content --}}
@if($project->store_url) View on Store @endif @if($project->demo_url) Live Demo @endif
@if($project->internal_documentation_content)

Documentation

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