I have this code:
$transactions = DB::table('transactions')
->join('orders', 'transactions.order_id', '=', 'orders.id')
->get()->paginate(5);
return view('transactions.index', ['transactions' => $transactions]);
the code result in this error:
Method IlluminateSupportCollection::paginate does not exist
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…