seo changed

This commit is contained in:
HolgerHatGarKeineNode
2023-02-08 21:01:06 +01:00
parent a913c6b66c
commit 6b30382cea
4 changed files with 14 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ namespace App\Http\Livewire\BookCase;
use App\Models\BookCase;
use Livewire\Component;
use RalphJSmit\Laravel\SEO\Support\SEOData;
class Heatmap extends Component
{
@@ -20,6 +21,12 @@ class Heatmap extends Component
return view('livewire.book-case.heatmap', [
'heatmap_data' => $data->toArray(),
])->layout('layouts.app', [
'SEOData' => new SEOData(
title: __('Heatmap of Bookcases'),
description: __('On this map you can see the success and spread of the Bitcoin books.'),
image: asset('img/heatmap_bookcases.png'),
)
]);
}
}