It will work with the following chain:
with() adds eager loading with constraints (like selecting specific columns from the relation).
skip(10) tells the query to offset the first 10 records.
get() executes the query.
$links = SomeModel::with('method:column1,column2')->skip(10)->get();