mirror of
https://github.com/anna-sara/vbytes_lan.git
synced 2025-12-24 05:17:13 +01:00
14 lines
194 B
PHP
14 lines
194 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Mailtemplate extends Model
|
|
{
|
|
protected $fillable = [
|
|
'title',
|
|
'content',
|
|
'type'
|
|
];
|
|
}
|