“Laravel pertence a” Respostas de código

Laravel onde tem

use Illuminate\Database\Eloquent\Builder;

// Retrieve posts with at least one comment containing words like foo%...
$posts = App\Post::whereHas('comments', function (Builder $query) {
    $query->where('content', 'like', 'foo%');
})->get();

// Retrieve posts with at least ten comments containing words like foo%...
$posts = App\Post::whereHas('comments', function (Builder $query) {
    $query->where('content', 'like', 'foo%');
}, '>=', 10)->get();
Alberto Peripolli

Como usar onde o relacionamento Laravel

Event::with(["owner", "participants" => function($q) use($someId){
    $q->where('participants.IdUser', '=', 1);
    //$q->where('some other field', $someId);
}])
Alive Angelfish

Laravel pertence a

    public function user()
    {
        return $this->belongsTo(User::class);
    }
Thoughtful Toucan

Laravel como fazer uma consulta pertencente ao relacionamento

$movies = Movie::whereHas('director', function($q) {
    $q->where('name', 'great');
})->get();
Fragile Flatworm

relacionamentos eloquentes

$roles = App\User::find(1)->roles()->orderBy('name')->get();
Energetic Emu

Respostas semelhantes a “Laravel pertence a”

Perguntas semelhantes a “Laravel pertence a”

Mais respostas relacionadas para “Laravel pertence a” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código