migrant-web/app/Models/ReminderLog.php

24 lines
378 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ReminderLog extends Model
{
protected $fillable = [
'user_type',
'user_id',
'event_type',
'entity_type',
'entity_id',
'reminder_level',
'channel',
'sent_at',
];
protected $casts = [
'sent_at' => 'datetime',
];
}