Made Profile & Account Settings functional
Also moved redundant HTML markup to component file for reuse. Username to UUID converter also added as Middleware
This commit is contained in:
@@ -6,5 +6,20 @@ use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Profile extends Model
|
||||
{
|
||||
//
|
||||
|
||||
public $fillable = [
|
||||
|
||||
'profileShortBio',
|
||||
'profileAboutMe',
|
||||
'avatarPreference',
|
||||
'socialLinks',
|
||||
'userID'
|
||||
|
||||
];
|
||||
|
||||
public function user()
|
||||
{
|
||||
return $this->belongsTo('App\User', 'userID', 'id');
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user