Files
einundzwanzig-portal/app/Http/Livewire/School/LecturerTable.php
Benjamin Takats 613ac30692 seo updated
2022-12-21 19:17:39 +01:00

24 lines
555 B
PHP

<?php
namespace App\Http\Livewire\School;
use App\Models\Country;
use Livewire\Component;
use RalphJSmit\Laravel\SEO\Support\SEOData;
class LecturerTable extends Component
{
public Country $country;
public function render()
{
return view('livewire.school.lecturer-table')->layout('layouts.app', [
'SEOData' => new SEOData(
title: __('Lecturers'),
description: __('Lecturers in the surrounding area.'),
image: asset('img/screenshot.png')
)
]);
}
}