webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Database
/
Eloquent
/
Relations
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Concerns
--
ren
BelongsTo.php
10.914KB
edt
ren
BelongsToMany.php
41.878KB
edt
ren
HasMany.php
1.509KB
edt
ren
HasManyThrough.php
24.239KB
edt
ren
HasOne.php
4.045KB
edt
ren
HasOneOrMany.php
14.606KB
edt
ren
HasOneThrough.php
2.201KB
edt
ren
MorphMany.php
2.306KB
edt
ren
MorphOne.php
4.168KB
edt
ren
MorphOneOrMany.php
3.497KB
edt
ren
MorphPivot.php
4.436KB
edt
ren
MorphTo.php
12.095KB
edt
ren
MorphToMany.php
5.747KB
edt
ren
Pivot.php
0.457KB
edt
ren
Relation.php
13.296KB
edt
ren
<?php namespace Illuminate\Database\Eloquent\Relations; use Illuminate\Database\Eloquent\Collection; class HasMany extends HasOneOrMany { /** * Convert the relationship to a "has one" relationship. * * @return \Illuminate\Database\Eloquent\Relations\HasOne */ public function one() { return HasOne::noConstraints(fn () => new HasOne( $this->getQuery(), $this->parent, $this->foreignKey, $this->localKey )); } /** * Get the results of the relationship. * * @return mixed */ public function getResults() { return ! is_null($this->getParentKey()) ? $this->query->get() : $this->related->newCollection(); } /** * Initialize the relation on a set of models. * * @param array $models * @param string $relation * @return array */ public function initRelation(array $models, $relation) { foreach ($models as $model) { $model->setRelation($relation, $this->related->newCollection()); } return $models; } /** * Match the eagerly loaded results to their parents. * * @param array $models * @param \Illuminate\Database\Eloquent\Collection $results * @param string $relation * @return array */ public function match(array $models, Collection $results, $relation) { return $this->matchMany($models, $results, $relation); } }
<=Back
Liking