modified unused tables
This commit is contained in:
@@ -1,24 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models\Mail;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class EveMail extends Model
|
||||
{
|
||||
//Table Name
|
||||
protected $table = 'eve_mails';
|
||||
|
||||
//Timestamps
|
||||
public $timestamps = true;
|
||||
|
||||
protected $fillable = [
|
||||
'sender',
|
||||
'recipient',
|
||||
'recipient_type',
|
||||
'subject',
|
||||
'body',
|
||||
'created_at',
|
||||
'updated_at',
|
||||
];
|
||||
}
|
||||
@@ -14,9 +14,9 @@ class SentMail extends Model
|
||||
|
||||
protected $fillable = [
|
||||
'sender',
|
||||
'recipient',
|
||||
'reicpient_type',
|
||||
'subject',
|
||||
'body',
|
||||
'recipient',
|
||||
'recipient_type',
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user