관리-도구
편집 파일: ChatBoxMessage.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; /** * @method static where(string $string, mixed $id) * @method static create(array $array) */ class ChatBoxMessage extends Model { protected $fillable = [ 'box_id', 'message', 'media_url', 'sms_type', 'send_by', 'sending_server_id', ]; public function chatBox() { return $this->belongsTo(ChatBox::class, 'box_id', 'id'); } }