You can use the Eloquent ORM to query the related data from the other tables. For example, if you have a User model and a Fakultas model, you can define a relationship between them in the User model like this:
public function fakultas()
{
return $this->belongsTo('App\Fakultas');
}
Then, you can query the related data from the Fakultas table using the auth()->user() method like this:
$fakultas = auth()->user()->fakultas;
You can also use the with() method to eager load the related data when querying the User model:
$user = User::with('fakultas')->find(auth()->id());
You can read more about Eloquent relationships in the Laravel documentation.