Page MenuHomePhorge

Relation.php
No OneTemporary

Authored By
Unknown
Size
531 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 array<int, string> The attributes that are mass assignable */
protected $fillable = ['item_id', 'related_id'];
/** @var string Database table name */
protected $table = 'fs_relations';
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Apr 24, 2:20 PM (1 w, 4 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18828645
Default Alt Text
Relation.php (531 B)

Event Timeline