50 lines
1.0 KiB
PHP
50 lines
1.0 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class CollectionMember extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'collection_id',
|
|
'user_id',
|
|
'invited_by_user_id',
|
|
'role',
|
|
'status',
|
|
'note',
|
|
'invited_at',
|
|
'expires_at',
|
|
'accepted_at',
|
|
'revoked_at',
|
|
];
|
|
|
|
protected $casts = [
|
|
'invited_at' => 'datetime',
|
|
'expires_at' => 'datetime',
|
|
'accepted_at' => 'datetime',
|
|
'revoked_at' => 'datetime',
|
|
];
|
|
|
|
public function collection(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Collection::class);
|
|
}
|
|
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
public function invitedBy(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'invited_by_user_id');
|
|
}
|
|
}
|