BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
app
/
Models
📤 Upload
📝 New File
📁 New Folder
Close
Editing: EmailTemplates.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class EmailTemplates extends Model { protected $table = 'email_templates'; // 'email_templates' is the name of the table in the database protected $fillable = [ 'title', 'subject', 'content', 'system', 'slug', ]; }
Save
Cancel