initial commit
This commit is contained in:
19
app/Models/PatientRegActivity.php
Normal file
19
app/Models/PatientRegActivity.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Notifications\Notifiable;
|
||||
|
||||
class PatientRegActivity extends Model
|
||||
{
|
||||
use Notifiable;
|
||||
protected $table = "patient_reg_activity";
|
||||
protected $fillable = [
|
||||
'id',
|
||||
'activity',
|
||||
'patient_id',
|
||||
'email_sent'
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user