mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
32 lines
684 B
PHP
32 lines
684 B
PHP
<?php
|
|
|
|
namespace App\Http\Livewire\BookCase;
|
|
|
|
use App\Models\Country;
|
|
use Livewire\Component;
|
|
use RalphJSmit\Laravel\SEO\Support\SEOData;
|
|
|
|
class CityTable extends Component
|
|
{
|
|
public Country $country;
|
|
|
|
public bool $manage = false;
|
|
|
|
protected $queryString = [
|
|
'manage' => [
|
|
'except' => false,
|
|
],
|
|
];
|
|
|
|
public function render()
|
|
{
|
|
return view('livewire.book-case.city-table')->layout('layouts.app', [
|
|
'SEOData' => new SEOData(
|
|
title: __('Bookcases'),
|
|
description: __('Search out a public bookcase'),
|
|
image: asset('img/screenshot.png')
|
|
),
|
|
]);
|
|
}
|
|
}
|