2019-04-27 13:57:39 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class Echomail extends Model
|
|
|
|
{
|
|
|
|
protected $dates = ['date'];
|
2019-05-06 12:29:29 +00:00
|
|
|
protected $fillable = ['date','msgid','from_ftn'];
|
2019-04-27 13:57:39 +00:00
|
|
|
|
|
|
|
public function kludges()
|
|
|
|
{
|
|
|
|
return $this->belongsToMany(Kludge::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function seenbys()
|
|
|
|
{
|
|
|
|
return $this->belongsToMany(Seenby::class,NULL,NULL,'node_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function paths()
|
|
|
|
{
|
|
|
|
return $this->belongsToMany(Path::class,NULL,NULL,'node_id');
|
|
|
|
}
|
|
|
|
}
|