turtle-wow-source-kinda/Dumps/Source Code/8 - Development_website/develop/app/Livewire/ShellCoin.php

25 lines
487 B
PHP
Raw Normal View History

2024-08-06 16:06:40 +00:00
<?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');
}
}