uawdijnntqw1x1x1
IP : 18.227.46.87
Hostname : host45.registrar-servers.com
Kernel : Linux host45.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
jackpotjunglegam
/
public_html
/
80d3f
/
.
/
..
/
core
/
resources
/
..
/
app
/
.
/
Models
/
Withdrawal.php
/
/
<?php namespace App\Models; use App\Constants\Status; use App\Traits\Searchable; use Illuminate\Database\Eloquent\Casts\Attribute; use Illuminate\Database\Eloquent\Model; class Withdrawal extends Model { use Searchable; protected $casts = [ 'withdraw_information' => 'object', ]; public function user() { return $this->belongsTo(User::class); } public function method() { return $this->belongsTo(WithdrawMethod::class, 'method_id'); } public function statusBadge(): Attribute { return new Attribute( get:fn() => $this->badgeData(), ); } public function badgeData() { $html = ''; if ($this->status == Status::PAYMENT_PENDING) { $html = '<span class="badge badge--warning">' . trans('Pending') . '</span>'; } elseif ($this->status == Status::PAYMENT_SUCCESS) { $html = '<span><span class="badge badge--success">' . trans('Approved') . '</span><br>' . diffForHumans($this->updated_at) . '</span>'; } elseif ($this->status == Status::PAYMENT_REJECT) { $html = '<span><span class="badge badge--danger">' . trans('Rejected') . '</span><br>' . diffForHumans($this->updated_at) . '</span>'; } return $html; } public function scopePending() { return $this->where('status', Status::PAYMENT_PENDING); } public function scopeApproved() { return $this->where('status', Status::PAYMENT_SUCCESS); } public function scopeRejected() { return $this->where('status', Status::PAYMENT_REJECT); } }
/home/jackpotjunglegam/public_html/80d3f/./../core/resources/../app/./Models/Withdrawal.php