You need to evaluate whether this is a Laravel question or a SQL question, and then whether you actually need a join.
To join them in sql (you would need to have use for columns on multiple tables) you would have something like
SELECT Items.*, Credit_sales.* from Items LEFT JOIN Credit_sales on Items.id = Credit_sales.id
But from what you said you could just
SELECT * from Credit_sales where item_id = 3
Now - this isn't Laravel specific though. I would advise that you read the ORM documentation, all the way through, where I imagine you would end up with code similar to:
$item = Item::find(13);
foreach ($item->creditSales as $creditSale) {
$creditSale->foo();
}
OR, simply
$creditSales = CreditSale::where('item_id', 13);
foreach ($item->creditSales as $creditSale) {
$creditSale->foo();
}
Either way - your question needs more context in order to be able to help.