Skip to content
This repository has been archived by the owner on Feb 4, 2024. It is now read-only.

Commit

Permalink
Compiled assets and changes to Model.
Browse files Browse the repository at this point in the history
  • Loading branch information
curtisdelicata committed Jun 28, 2018
1 parent 0481856 commit f61e8a4
Show file tree
Hide file tree
Showing 21 changed files with 23 additions and 3,211 deletions.
4 changes: 2 additions & 2 deletions app/Individual.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ public function families()

public function children()
{
return $this->belongsToMany(self::class, 'child_parent', 'child_id', 'parent_id');
return $this->belongsToMany(self::class, 'child_parent', 'parent_id', 'child_id');
}

public function parents()
{
return $this->belongsToMany(self::class, 'child_parent', 'parent_id', 'child_id');
return $this->belongsToMany(self::class, 'child_parent', 'child_id', 'parent_id');
}

public function getNameAttribute()
Expand Down
2 changes: 1 addition & 1 deletion app/Note.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class Note extends Model
{
protected $fillable = ['name', 'description', 'is_active'];
protected $fillable = ['name', 'description', 'is_active', 'type_id'];

protected $attributes = ['is_active' => false];

Expand Down
2 changes: 1 addition & 1 deletion public/29.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/30.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/31.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/32.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/34.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/35.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/36.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/37.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/41.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/52.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/54.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/54.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/55.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/55.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/56.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/56.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit f61e8a4

Please sign in to comment.