18 lines
300 B
PHP
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'];
|
||
|
}
|