Laravel aktualizace související model

Příklady kódu

4
0

web wehehas: https: / / laravel. com / docs/

use Illuminate\Database\Eloquent\Builder;

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

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

laravel výmluvný spolupracovník

$account = App\Account::find(10);

$user->account()->associate($account);

$user->save();
1
0

výmluvné vztahy

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

laravel jak dotaz patřík vztahu

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

V jiných jazycích

Tato stránka je v jiných jazycích

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................