MailLog.php 312 B

12345678910111213141516
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class MailLog extends Model
  5. {
  6. protected $table = 'v2_mail_log';
  7. protected $dateFormat = 'U';
  8. protected $guarded = ['id'];
  9. protected $casts = [
  10. 'created_at' => 'timestamp',
  11. 'updated_at' => 'timestamp'
  12. ];
  13. }