“W związku z relacją Laravel” Kod odpowiedzi

W związku z relacją Laravel

//Single relationship
$billings = Billing::with('user')->get();
// sinlge with selected colums
$billings = Billing::with('user:id,name')->get();

// multiple relations
$billings = Biling::with(['user', 'subscription'])->get();

// nested relations
$schools = School::with('class.user')->get();

// Constraining Eager Loads
$users = User::with(['posts' => function ($query) {
    $query->where('title', 'like', '%code%');
}])->get();
$users = User::with(['posts' => function ($query) {
    $query->orderBy('created_at', 'desc');
}])->get();
KingUche

wymowne relacje

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

Odpowiedzi podobne do “W związku z relacją Laravel”

Pytania podobne do “W związku z relacją Laravel”

Więcej pokrewnych odpowiedzi na “W związku z relacją Laravel” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu