Installation
๐ Private Component Installation
๐ Overview
The x-xf component library is developed for private/internal use across our Laravel applications. It provides a modular approach to building consistent, maintainable forms using custom Blade components.
๐งช Test Integration
Use a basic form to verify everything is working:
<x-xf::form :attr="['route' => 'internal.store']">
<x-xf::text name="username" label="Username" />
<x-xf::email name="email" label="Email" />
</x-xf::form>
๐ Note
- This component system is not published on Packagist or intended for open-source distribution.
- For reuse across projects, copy the components into the same folder structure manually or manage them via a private Git repository.
โ You're Ready
Your private form system is now ready for internal use. Maintain consistency, reduce duplication, and build smarter forms across your apps.