@extends('layouts.app') @section('title', $project->name . ' - Analysis Results') @section('content')

{{ $project->name }}

{{ $project->getChainName() }} {{ $project->created_at->format('M j, Y') }} View Contract ↗
Overall Score

Analysis Progress

Analysis Failed

{{ $project->error_message ?? 'An error occurred during analysis.' }}

@if($project->security_analysis)

🛡️ Security Analysis

@php $security = $project->security_analysis; @endphp @if(!empty($security['risk_factors']))

Risk Factors

    @foreach($security['risk_factors'] as $risk)
  • {{ $risk }}
  • @endforeach
@endif
Open Source: {{ ($security['is_open_source'] ?? false) ? 'Yes' : 'No' }}
Honeypot: {{ ($security['is_honeypot'] ?? false) ? 'Yes' : 'No' }}
Buy Tax: {{ number_format(($security['buy_tax'] ?? 0) * 100, 1) }}%
Sell Tax: {{ number_format(($security['sell_tax'] ?? 0) * 100, 1) }}%
@endif @if($project->whitepaper_analysis)

📄 Whitepaper Analysis

@php $whitepaper = $project->whitepaper_analysis; @endphp @if(!empty($whitepaper['summary']))

Summary

{{ $whitepaper['summary'] }}

@endif
@if(!empty($whitepaper['strengths']))

Strengths

    @foreach(array_slice($whitepaper['strengths'], 0, 3) as $strength)
  • {{ $strength }}
  • @endforeach
@endif @if(!empty($whitepaper['weaknesses']))

Concerns

    @foreach(array_slice($whitepaper['weaknesses'], 0, 3) as $weakness)
  • {{ $weakness }}
  • @endforeach
@endif
@endif
@if($project->tokenomics_analysis && !empty($project->tokenomics_analysis['price_predictions']))

💰 Price Predictions

Speculative predictions based on tokenomics analysis

@php $predictions = $project->tokenomics_analysis['price_predictions']; @endphp
@foreach(['conservative_1_year', 'moderate_1_year', 'optimistic_1_year', 'bull_market_1_year'] as $scenario) @if(isset($predictions[$scenario]))
${{ number_format($predictions[$scenario], 8) }}
{{ str_replace('_1_year', '', $scenario) }}
@endif @endforeach
@if(!empty($predictions['disclaimer']))

Disclaimer: {{ $predictions['disclaimer'] }}

@endif
@endif
@push('scripts') @endpush @endsection