@extends('admin.layout') @section('title', 'Achievements') @section('subtitle', $achievements->count() . ' total') @section('content')
+ New Achievement
@foreach ($achievements as $a)
🏆
{{ $a->users_count }} users

{{ $a->title }}

{{ $a->description }}

Slug: {{ $a->slug }}
Icon: {{ $a->icon }} · Color: {{ $a->color }}
Requirement: {{ $a->requirement_type }} ≥ {{ $a->requirement_value }}
Edit
@csrf @method('DELETE')
@endforeach
@endsection