Your IP : 216.73.216.145


Current Path : /home/users/unlimited/www/ultimate-ai.codeskitter.site/app/Models/
Upload File :
Current File : /home/users/unlimited/www/ultimate-ai.codeskitter.site/app/Models/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',
    ];
}