LaraUI - V1.0

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.