| Total Complexity | 3 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class Anggaran extends Model |
||
| 9 | { |
||
| 10 | use SoftDeletes; |
||
| 11 | |||
| 12 | public $timestamps = true; |
||
| 13 | |||
| 14 | protected $table = 'anggarans'; |
||
| 15 | protected $dates = [ |
||
| 16 | 'deleted_at' |
||
| 17 | ]; |
||
| 18 | protected $fillable = [ |
||
| 19 | 'group_egovernment_id', |
||
| 20 | 'sector_egovernment_id', |
||
| 21 | 'user_id', |
||
| 22 | 'label', |
||
| 23 | 'description', |
||
| 24 | 'link' |
||
| 25 | ]; |
||
| 26 | |||
| 27 | public function group_egovernment() |
||
| 28 | { |
||
| 29 | return $this->belongsTo('Bantenprov\GroupEgovernment\Models\Bantenprov\GroupEgovernment\GroupEgovernment','group_egovernment_id'); |
||
| 30 | } |
||
| 31 | |||
| 32 | public function sector_egovernment() |
||
| 35 | } |
||
| 36 | |||
| 37 | public function user() |
||
| 42 |