webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Database
/
Eloquent
/
Concerns
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
GuardsAttributes.php
5.876KB
edt
ren
HasAttributes.php
65.347KB
edt
ren
HasEvents.php
10.462KB
edt
ren
HasGlobalScopes.php
3.157KB
edt
ren
HasRelationships.php
30.038KB
edt
ren
HasTimestamps.php
4.967KB
edt
ren
HasUlids.php
2.14KB
edt
ren
HasUniqueIds.php
0.988KB
edt
ren
HasUuids.php
2.135KB
edt
ren
HidesAttributes.php
2.841KB
edt
ren
QueriesRelationships.php
31.977KB
edt
ren
<?php namespace Illuminate\Database\Eloquent\Concerns; trait HasUniqueIds { /** * Indicates if the model uses unique ids. * * @var bool */ public $usesUniqueIds = false; /** * Determine if the model uses unique ids. * * @return bool */ public function usesUniqueIds() { return $this->usesUniqueIds; } /** * Generate unique keys for the model. * * @return void */ public function setUniqueIds() { foreach ($this->uniqueIds() as $column) { if (empty($this->{$column})) { $this->{$column} = $this->newUniqueId(); } } } /** * Generate a new key for the model. * * @return string */ public function newUniqueId() { return null; } /** * Get the columns that should receive a unique identifier. * * @return array */ public function uniqueIds() { return []; } }
<=Back
Liking