This commit is contained in:
root
2019-12-30 16:21:50 +08:00
parent 157a97b35d
commit 5070c851ed
4 changed files with 43 additions and 6 deletions

12
app/Models/MailLog.php Normal file
View File

@ -0,0 +1,12 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class MailLog extends Model
{
protected $table = 'v2_mail_log';
protected $dateFormat = 'U';
protected $guarded = ['id'];
}