apps/v4/content/docs/installation/laravel.mdx
Starting a new project? Use shadcn/create for a fully configured Laravel app with custom themes, Base UI or Radix, and icon libraries.
</Callout> <Steps>Start by creating a new Laravel project with Inertia and React using the Laravel installer:
laravel new my-app --react
Run the init command to configure shadcn/ui in your Laravel project:
npx shadcn@latest init --force
If asked to overwrite the existing components, answer y to continue.
You can now start adding components to your project.
npx shadcn@latest add switch
The command above will add the Switch component to resources/js/components/ui/switch.tsx. You can then import it like this:
import { Switch } from "@/components/ui/switch"
const MyPage = () => {
return (
<div>
<Switch />
</div>
)
}
export default MyPage