20 lines
389 B
PHP
20 lines
389 B
PHP
<?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'
|
|
];
|
|
}
|