Skip to content

Instantly share code, notes, and snippets.

View SuddenDev's full-sized avatar

Dominik SuddenDev

View GitHub Profile
@ashleykleynhans
ashleykleynhans / README.md
Last active August 14, 2025 00:11 — forked from dlage/README.md
Namecheap DNS to zone file
@mohitmamoria
mohitmamoria / README.md
Last active August 9, 2025 09:12
Inertia.js Form Helper for Axios/API calls

Inertia.js ships with a fantastic form helper but it falls short when also using API/Axios calls in your project.

Here's a composable, built on top of the Inertia's form helper that hooks into it to replace the API calls with Axios.

To use, just replace useForm with useAPIForm.

const form = useAPIForm({
    title: '',
});