18 lines
457 B
PHP
18 lines
457 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class ActivityFormMetadata extends SigdModel
|
|
{
|
|
protected $table = 'form_metadata';
|
|
protected $fillable = [
|
|
'id', 'form_id', 'name', 'publisher', 'published_year', 'contact_name', 'contact_phone', 'contact_email',
|
|
'description', 'file_name', 'row_status', 'created_by', 'updated_by',
|
|
];
|
|
|
|
public function form()
|
|
{
|
|
return $this->belongsTo(ActivityForm::class, 'form_id', 'id');
|
|
}
|
|
}
|