“красноречивые отношения” Ответ

Ларавел, где есть

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

Ассоциированный Ларавел

When updating a belongsTo relationship, you may use the associate method. This 
method will set the foreign key on the child model:

	$account = App\Account::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();
Lokesh003Coding

красноречивые отношения

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

Ответы похожие на “красноречивые отношения”

Вопросы похожие на “красноречивые отношения”

Смотреть популярные ответы по языку

Смотреть другие языки программирования