To get the users related to an admin in Laravel, you can use the hasMany relationship method on the Admin model to define a one-to-many relationship with the User model.
In the Admin model:
public function users()
{
return $this->hasMany(User::class, 'id_users');
}
then you can do in your view:
@if ($record->admin?->notifiche) // check if notifiche is not null
{{ $record->admin->notifiche }}
@endif
toledomauricio liked this reply
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community