Page MenuHomePhorge

Relation.php
No OneTemporary

Authored By
Unknown
Size
625 B
Referenced Files
None
Subscribers
None

Relation.php

<?php
namespace App\Fs;
use Illuminate\Database\Eloquent\Model;
/**
* The eloquent definition of a filesystem relation.
*
* @property string $id Relation identifier
* @property string $item_id Item identifier
* @property string $related_id Related item identifier
*/
class Relation extends Model
{
/** @var list<string> The attributes that are mass assignable */
protected $fillable = ['item_id', 'related_id'];
/** @var string Database table name */
protected $table = 'fs_relations';
/** @var bool Indicates if the model should be timestamped. */
public $timestamps = false;
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Apr 24, 10:35 AM (11 h, 38 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18794658
Default Alt Text
Relation.php (625 B)

Event Timeline