1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-24 03:12:46 +01:00
freescout/app/Sendmail.php
2018-11-09 12:52:14 +01:00

35 lines
491 B
PHP

<?php
/**
* Outgoing emails.
*/
namespace App;
use Illuminate\Database\Eloquent\Model;
class Sendmail extends Model
{
/**
* The attributes that are not mass assignable.
*
* @var array
*/
protected $guarded = ['id'];
/**
* Customer.
*/
public function customer()
{
return $this->belongsTo('App\Customer');
}
/**
* User.
*/
public function user()
{
return $this->belongsTo('App\User');
}
}