add projet
This commit is contained in:
Executable
+16
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
class BroadcastEmail extends BaseModel
|
||||
{
|
||||
protected $table = 'broadcast_emails';
|
||||
protected $primaryKey = 'id';
|
||||
public $timestamps = true;
|
||||
protected $fillable = [
|
||||
'subject',
|
||||
'body',
|
||||
'total_sent',
|
||||
'created_at',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user