I need to paginate this where I need to find id but i don't know how.
function customerContact($id)
{
$customers = Customer::with('contacts')->find($id);
return Inertia::render('Customers/Contacts/Index', [
'customers' => $customers,
]);
}