mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
31 lines
653 B
PHP
31 lines
653 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Repositories\ToolRepository;
|
|
use Google\Service\Testing\ToolResultsExecution;
|
|
|
|
class StaffMessage extends NexusModel
|
|
{
|
|
protected $table = 'staffmessages';
|
|
|
|
protected $fillable = [
|
|
'sender', 'added', 'subject', 'msg', 'answeredby', 'answered', 'answer', 'permission',
|
|
];
|
|
|
|
protected $casts = [
|
|
'added' => 'datetime',
|
|
];
|
|
|
|
public function send_user()
|
|
{
|
|
return $this->belongsTo(User::class, 'sender')->withDefault(['id' => 0, 'username' => 'System']);
|
|
}
|
|
|
|
public function answer_user()
|
|
{
|
|
return $this->belongsTo(User::class, 'answeredby');
|
|
}
|
|
|
|
}
|