Update Formularium

This commit is contained in:
2022-08-15 12:42:49 +07:00
parent 8319331d26
commit a3b53ea334
65 changed files with 3218 additions and 52 deletions

26
app/Models/Identifier.php Normal file
View File

@@ -0,0 +1,26 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Identifier extends Model
{
use HasFactory;
protected $fillable = [
'use',
'type',
'system',
'value',
'period_start',
'period_end',
'assigner',
];
public function identifiable()
{
return $this->morphTo();
}
}