seo updated

This commit is contained in:
Benjamin Takats
2022-12-21 19:17:39 +01:00
parent 7d90c7317d
commit 613ac30692
26 changed files with 194 additions and 20 deletions

View File

@@ -5,6 +5,7 @@ namespace App\Http\Livewire\BitcoinEvent;
use App\Models\BitcoinEvent;
use App\Models\Country;
use Livewire\Component;
use RalphJSmit\Laravel\SEO\Support\SEOData;
class BitcoinEventTable extends Component
{
@@ -50,6 +51,12 @@ class BitcoinEventTable extends Component
'location' => $event->title,
'description' => $event->description,
]),
])->layout('layouts.app', [
'SEOData' => new SEOData(
title: __('Bitcoin Events'),
description: __('Search out a Bitcoin Event'),
image: asset('img/screenshot.png')
)
]);
}