Add application list for users

This commit is contained in:
2020-05-11 16:44:47 +01:00
parent f46a941b61
commit 7635f8e2f4
6 changed files with 80 additions and 44 deletions

View File

@@ -13,4 +13,9 @@ class Application extends Model
'applicantStatus'
];
public function user()
{
return $this->belongsTo('App\User', 'applicantUserID', 'id');
}
}