Te sugerimos que revises esta resolución en un ambiente controlado antes de pasarlo a producción, saludos.
Ejemplo 1: cómo usar la relación where en laravel
Event::with(["owner", "participants"=> function($q) use($someId)$q->where('participants.IdUser', '=', 1);
//$q->where('some other field', $someId);])
Ejemplo 2: laravel donde en la columna de relación
Player::whereHas('roleplay', function($q)$q->where('column_name', 'value');)->get();
Ejemplo 3: asociar laravel
When updating a belongsTo relationship, you may use the associate method. This
method will set the foreign key on the child model:
$account= AppAccount::find(10);$user->account()->associate($account);$user->save();
When removing a belongsTo relationship, you may use the dissociate method. This
method will set the relationship foreign key to null:
$user->account()->dissociate();$user->save();
Ejemplo 4: laravel cómo consultar la relación pertenece a
$movies= Movie::whereHas('director', function($q)$q->where('name', 'great');)->get();
Ejemplo 5: relaciones elocuentes
$roles= AppUser::find(1)->roles()->orderBy('name')->get();
Nos encantaría que puedieras dar visibilidad a esta división si te fue de ayuda.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)