• File: Email.php
  • Full Path: /var/www/ticketapp/app/Email.php
  • Date Modified: 02/01/2022 9:30 PM
  • File size: 497 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace App;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;

class Email extends Model
{
    use HasFactory;
    use SoftDeletes;

    public $table = 'emails';

    protected $fillable = ['author_name', 'name', 'subject', 'id_ticket', 'author_email', 'user_id', 'comment_text'];

//    protected $fillable = ['author_name', 'title', 'id_ticket', 'author_email', 'user_id', 'comment_text'];
}