Files
einundzwanzig-portal/app/Http/Livewire/Frontend/SearchCity.php
Benjamin Takats d2427cf3d0 search tabs added
2022-12-01 00:10:37 +01:00

17 lines
259 B
PHP

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