Files
einundzwanzig-portal/app/Http/Livewire/Frontend/SearchEvent.php
Benjamin Takats 8e8bd81afe tabs added
2022-12-12 19:17:09 +01:00

17 lines
261 B
PHP

<?php
namespace App\Http\Livewire\Frontend;
use App\Models\Country;
use Livewire\Component;
class SearchEvent extends Component
{
public Country $country;
public function render()
{
return view('livewire.frontend.search-event');
}
}