I have Banks
table and separate table with services
$bank = Banks::find(1);
echo $bank->service(1); // print bank with that service (serviceId 1)
It is posible to eager load all banks with service_id =1 ..somewhat like
Bank::with('service(1)')->get();
Thank you in advance