Can be possible to store a file uploaded to a related table?
Scenario: I have a usres
table in database and another one pictures
. Users Model have the following function
public function picture()
{
return $this->hasOne(Picture::class);
}
And the Picture Model have the following function.
public function user_picture()
{
return $this->belongsTo(User::class, 'user_id', 'id');
}
Is possible to store the picture in pictures
database table (id, user_id, img_path)
from the UserCrudController store()
function?