1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-24 19:33:07 +01:00
freescout/app/ConversationFolder.php
2018-11-12 09:12:57 +00:00

18 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'];
}