freescout-support/app/ConversationFolder.php
2018-11-12 09:12:57 +00:00

17 lines
300 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class ConversationFolder extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'conversation_folder';
protected $fillable = ['folder_id', 'conversation_id'];
}