hall of fame

This commit is contained in:
Benjamin Takats
2023-01-14 21:56:52 +01:00
parent d38a62d0c1
commit 5ecd045c9f
4 changed files with 11 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ namespace App\Http\Livewire\BookCase;
use App\Models\Country;
use App\Models\User;
use Livewire\Component;
use RalphJSmit\Laravel\SEO\Support\SEOData;
class HighscoreTable extends Component
{
@@ -19,6 +20,12 @@ class HighscoreTable extends Component
])
->orderByDesc('orange_pills_count')
->get(),
])->layout('layouts.app', [
'SEOData' => new SEOData(
title: __('Highscore Table'),
description: __('Hall of fame of our honorable plebs'),
image: asset('img/highscore_table_screenshot.png'),
)
]);
}
}