how to get value in mapping with one to other tables in relationship in laravel code example
Example 1: whereHas site:https://laravel.com/docs/
use Illuminate\Database\Eloquent\Builder;
$posts = Post::whereHas('comments', function (Builder $query) {
$query->where('content', 'like', 'code%');
})->get();
$posts = Post::whereHas('comments', function (Builder $query) {
$query->where('content', 'like', 'code%');
}, '>=', 10)->get();
Example 2: latavel attach method
$user->roles()->attach($roleId, ['expires' => $expires]);