34 خطوط
754 B
PHP
34 خطوط
754 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\MorphTo;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class Note extends Model
|
|
{
|
|
use SoftDeletes;
|
|
|
|
protected $fillable = ['notable_type', 'notable_id', 'content', 'user_id', 'type', 'visibility', 'is_pinned', 'edited_at', 'source_key'];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'is_pinned' => 'boolean',
|
|
'edited_at' => 'datetime',
|
|
];
|
|
}
|
|
|
|
public function notable(): MorphTo
|
|
{
|
|
return $this->morphTo();
|
|
}
|
|
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
}
|