filters changed

This commit is contained in:
Benjamin Takats
2022-12-13 15:26:45 +01:00
parent 45c8bca808
commit 06c027fe01
12 changed files with 103 additions and 38 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace App\Http\Livewire\BookCase;
use App\Models\Country;
use Livewire\Component;
class CityTable extends Component
{
public Country $country;
public function render()
{
return view('livewire.book-case.city-table');
}
}