22 lines
486 B
PHP
22 lines
486 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class MemberStatusLog extends Model
|
|
{
|
|
protected $fillable = ['member_id', 'changed_by', 'old_status', 'new_status', 'reason'];
|
|
|
|
public function member(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'member_id');
|
|
}
|
|
|
|
public function changedBy(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'changed_by');
|
|
}
|
|
}
|