1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-25 03:43:33 +01:00
freescout/app/ConversationFolder.php
2018-09-14 01:24:04 -07:00

18 lines
334 B
PHP

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