mirror of
https://github.com/anna-sara/vbytes_lan.git
synced 2026-09-03 11:25:22 +02:00
21 lines
338 B
PHP
21 lines
338 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Mailtemplate extends Model
|
|
{
|
|
protected $fillable = [
|
|
'title',
|
|
'content',
|
|
'type',
|
|
'draft',
|
|
'smstemplate_id',
|
|
];
|
|
|
|
public function smstemplate()
|
|
{
|
|
return $this->belongsTo(Smstemplate::class);
|
|
}
|
|
}
|