mirror of
https://gh.wpcy.net/https://github.com/hayBIT/freescout2ant.git
synced 2026-05-25 20:34:06 +08:00
18 lines
290 B
PHP
18 lines
290 B
PHP
<?php
|
|
|
|
namespace Modules\AmeiseModule\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use App\Conversation;
|
|
|
|
|
|
class CrmArchive extends Model
|
|
{
|
|
protected $guarded = ['id'];
|
|
public function conversation()
|
|
{
|
|
return $this->belongsTo(Conversation::class);
|
|
}
|
|
|
|
//
|
|
}
|