23 خطوط
514 B
PHP
23 خطوط
514 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\MorphTo;
|
|
|
|
class File extends Model
|
|
{
|
|
protected $fillable = ['name', 'original_name', 'path', 'mime_type', 'size', 'fileable_id', 'fileable_type', 'user_id'];
|
|
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
public function fileable(): MorphTo
|
|
{
|
|
return $this->morphTo();
|
|
}
|
|
}
|