turtle-wow-source-kinda/Dumps/Source Code/8 - Development_website/develop/app/Livewire/ShellCoin.php
Brian Oost a1d5bb70b2 Init
2024-08-06 18:06:40 +02:00

25 lines
487 B
PHP

<?php
namespace App\Livewire;
use App\Http\Controllers\characters\ShellcoinController;
use Livewire\Component;
class ShellCoin extends Component
{
public $shellCoinData;
public $shellCoinData7d;
public function mount()
{
$shellCoin = new ShellcoinController();
$this->shellCoinData = $shellCoin->get();
$this->shellCoinData7d = $shellCoin->get7d();
}
public function render()
{
return view('livewire.shell-coin');
}
}