table changes

This commit is contained in:
Benjamin Takats
2023-01-19 15:44:09 +01:00
parent 31c7b47548
commit faeb31d4b2
17 changed files with 46 additions and 37 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace App\Http\Livewire\School;
use App\Models\Country;
use Livewire\Component;
use RalphJSmit\Laravel\SEO\Support\SEOData;
class CourseTable extends Component
{
public Country $country;
public function render()
{
return view('livewire.school.course-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')
)
]);
}
}