You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
449 B
23 lines
449 B
<?php
|
|
|
|
namespace app\admin\model\shopro\chat;
|
|
|
|
use app\admin\model\shopro\Common;
|
|
use app\admin\model\shopro\chat\traits\ChatCommon;
|
|
|
|
class Question extends Common
|
|
{
|
|
use ChatCommon;
|
|
|
|
protected $name = 'shopro_chat_question';
|
|
|
|
protected $append = [
|
|
'status_text',
|
|
'room_name'
|
|
];
|
|
|
|
public function scopeRoomId($query, $room_id)
|
|
{
|
|
return $query->where('room_id', $room_id);
|
|
}
|
|
}
|
|
|