File "WithdrawHistory.php"
Full Path: /home/fundopuh/trader.fxex.org/app/Http/Livewire/User/History/WithdrawHistory.php
File size: 619 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
// this Code is Cracked by dharunMods-YouTube-Channel
namespace App\Http\Livewire\User\History;
use App\Models\Settings;
use App\Models\Withdrawal;
use Livewire\Component;
use Livewire\WithPagination;
class WithdrawHistory extends Component
{
use WithPagination;
protected $paginationTheme = 'bootstrap';
public function render()
{
$settings = Settings::select('theme')->find(1);
return view("{$settings->theme}.livewire.user.history.withdraw-history", [
'withdrawals' => Withdrawal::where('user', auth()->user()->id)->latest()->paginate(10),
]);
}
}