20 lines
354 B
PHP
20 lines
354 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class ActivityForm extends SigdModel
|
|
{
|
|
protected $table = 'form';
|
|
protected $guarded = [];
|
|
|
|
public function form()
|
|
{
|
|
return $this->belongsTo(SettingForm::class, 'form_code', 'code');
|
|
}
|
|
|
|
public function agency()
|
|
{
|
|
return $this->belongsTo(Agency::class, 'agency_id', 'id');
|
|
}
|
|
}
|