mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
24 lines
608 B
PHP
24 lines
608 B
PHP
<?php
|
|
|
|
namespace App\Http\Livewire\School;
|
|
|
|
use App\Models\Country;
|
|
use Livewire\Component;
|
|
use RalphJSmit\Laravel\SEO\Support\SEOData;
|
|
|
|
class CouseTable extends Component
|
|
{
|
|
public Country $country;
|
|
|
|
public function render()
|
|
{
|
|
return view('livewire.school.couse-table')->layout('layouts.app', [
|
|
'SEOData' => new SEOData(
|
|
title: __('Courses'),
|
|
description: __('Choose your city, search for courses in the surrounding area and select a topic that suits you.'),
|
|
image: asset('img/screenshot.png')
|
|
)
|
|
]);
|
|
}
|
|
}
|