{{-- Header Section --}}
{{ $project->category->name }} @if($project->online_status === 'online') Online @else Offline @endif

{{ $project->name }}

{{ $project->website_url }}
{{ $project->star_rating }}

{{ $project->review_count }} Reviews

Trust Score: {{ $project->trust_score }}/100
{{-- Main Content --}}
{{-- Description --}}

About {{ $project->name }}

{{ $project->description }}
{{-- Features & Attributes --}}

Features & Information

Privacy Level: {{ $project->privacy_level ?? 'N/A' }}

AML Risk: {{ $project->aml_risk_level ?? 'N/A' }}

Regulatory Status: {{ $project->regulatory_status ?? 'Unknown' }}

Jurisdiction: {{ $project->jurisdiction ?? 'Global' }}

Registration Required: {{ $project->registration_required ? 'Yes' : 'No' }}

No Log Policy: {{ $project->no_log_policy ? 'Yes' : 'No' }}

Source Code: {{ $project->source_code_availability ? 'Open Source' : 'Closed Source' }}

Own Liquidity: {{ $project->own_liquidity ? 'Yes' : 'No' }}

@if($project->features)

Key Features

@foreach($project->features as $feature) {{ $feature }} @endforeach
@endif
{{-- Category Specifics --}} @if($project->category->slug === 'mixers' || $project->category->slug === 'exchanges')

Fees & Limits

@if($project->min_service_fee)
Min Service Fee {{ $project->min_service_fee }}%
@endif @if($project->fixed_fee)
Fixed Fee {{ $project->fixed_fee }}
@endif @if($project->min_time_delay)
Min Time Delay {{ $project->min_time_delay }} mins
@endif
@endif {{-- Reviews Section --}}
{{-- Sidebar --}}
{{-- Status Card --}}

Project Status

@if($project->list_status === 'verified') Verified Listing @elseif($project->list_status === 'scam') ⚠️ SCAM WARNING @else {{ $project->list_status }} @endif
@if($project->ownership_verified)
Ownership Verified
@endif
{{-- Supported Cryptos --}} @if($project->supported_cryptos)

Supported Cryptos

@foreach($project->supported_cryptos as $crypto) {{ $crypto }} @endforeach
@endif {{-- Official Channels --}} @if($project->discussion_channels)

Community & Social

    @foreach($project->discussion_channels as $channel)
  • {{ $channel }}
  • @endforeach
@endif