@extends('layouts.app') @section('title', 'All Projects') @section('content')

All Projects

Browse and manage all analyzed crypto projects

New Analysis
@if($projects->count() > 0)

{{ $projects->total() }} Projects

@foreach($projects as $project) @endforeach
Project Chain Score Status Created Actions
@if($project->overall_score)
{{ $project->overall_score }}
@else
@endif
{{ $project->name }}
{{ Str::limit($project->contract_address, 20) }}
{{ $project->getChainName() }}
@if($project->overall_score)
{{ $project->overall_score }}/100
@else - @endif
{{ ucfirst($project->status) }} {{ $project->created_at->format('M j, Y') }}
View Explorer ↗
@csrf @method('DELETE')
@if($projects->hasPages())
{{ $projects->links() }}
@endif
@else

No projects

Get started by analyzing your first crypto project.

@endif
@endsection