bitcoin events added

This commit is contained in:
Benjamin Takats
2022-12-12 18:32:50 +01:00
parent 568fbfb4b4
commit 1549fb0f43
15 changed files with 357 additions and 15 deletions

View File

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