twenycode / tweny-ui-kit
A comprehensive set of Laravel Blade components to accelerate your UI development
Requires
- laravel/ui: ^4.2
- v3.x-dev
- v3.0.10
- v3.0.9
- 3.0.8
- 3.0.7
- 3.0.6
- 3.0.5
- v3.0.4
- v3.0.1
- v3.0.0
- v2.x-dev
- v2.2.1
- v2.2.0
- v2.1.3
- v2.1.2
- v2.1.1
- v2.1.0
- v2.0.0
- v1.x-dev
- v1.5.7
- v1.5.6
- v1.5.5
- v1.5.4
- v1.5.3
- v1.5.2
- v1.5.1
- v1.5.0
- v1.4.5
- v1.4.4
- v1.4.3
- v1.4.2
- v1.4.1
- v1.4.0
- v1.3.6
- v1.3.5
- v1.3.4
- v1.3.3
- v1.3.2
- v1.3.1
- v1.3.0
- v1.2.8
- v1.2.7
- v1.2.6
- v1.2.5
- v1.2.4
- v1.2.3
- v1.2.2
- v1.2.1
- v1.2.0
- v1.1.1
- v1.1.0
- v1.0.2
- v1.0.1
- v1.0.0
- dev-main
This package is auto-updated.
Last update: 2025-03-28 15:05:38 UTC
README
A comprehensive set of Laravel Blade components to accelerate your UI development. Built on Bootstrap 5, Laravel BladeKit provides 60+ reusable, customizable components for common UI elements to streamline your development workflow. Eliminate repetitive UI code and create consistent, beautiful interfaces with minimal effort.
🚀 Features
- 60+ Ready-to-use Components - Everything from buttons to complex data tables
- Consistent API - Intuitive naming and parameters across all components
- Bootstrap 5 Integration - Modern, responsive design out of the box
- Form Validation - Built-in error handling and validation state display
- Minimal Configuration - Works seamlessly with Laravel's Blade templating
- Fully Customizable - Extend or override any component as needed
- Interactive Components - Dropdowns, tabs, accordions, modals, and more
📦 Installation
1. Install Laravel BladeKit
Install the package via composer:
composer require twenycode/laravel-bladekit
This will automatically install Laravel UI as a dependency and register the service provider.
2. Install Bootstrap 5 via Laravel UI
php artisan ui bootstrap
This command will install Bootstrap 5 assets. You'll then need to compile these assets:
npm install npm run dev
⚙️ Configuration
Bootstrap Setup
Ensure you have Bootstrap 5 properly set up in your Laravel application. Make sure your main layout file includes the Bootstrap CSS and JS:
<!-- In your layout file (e.g., app.blade.php) --> <link href="{{ asset('css/app.css') }}" rel="stylesheet"> <script src="{{ asset('js/app.js') }}" defer></script>
For Font Awesome icons (used in many examples), you'll need to include Font Awesome in your project:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
BladeKit Configuration (Optional)
# Publish configuration php artisan vendor:publish --tag="tweny-bladekit-config" # Publish views for customization php artisan vendor:publish --tag="tweny-bladekit-views"
🎯 Quick Start
Once installed, you can immediately start using Laravel BladeKit components in your Blade views:
<x-card card-title="Registration Form"> <x-form action="{{ route('register') }}" has-files="true"> <x-form-group name="name" label="Name" required> <x-input name="name" placeholder="Enter your name" /> </x-form-group> <x-form-group name="email" label="Email" required> <x-email name="email" placeholder="Enter your email" /> </x-form-group> <x-form-group name="password" label="Password" required> <x-password name="password" /> </x-form-group> <x-form-group name="password_confirmation" label="Confirm Password" required> <x-password name="password_confirmation" /> </x-form-group> <x-button type="submit" label="Register" color="primary" /> </x-form> </x-card>
📚 Component Categories
Laravel BladeKit includes components organized into the following categories:
Button Components
x-button
- Standard button with various styles and statesx-button-group
- Group of related buttonsx-delete
- Delete button with confirmation dialogx-dropleft
- Dropdown button with left alignment
Layout Components
x-card
- Card container with optional header and footerx-alert
- Alert box for messages and notificationsx-modal
- Modal dialog with customizable header and footerx-toast
- Toast notification for temporary messagesx-accordion
- Collapsible accordion containerx-accordion-item
- Individual accordion panelx-tab
- Tabbed interface containerx-tab-content
- Individual tab panel contentx-progress
- Progress bar with various styles and states
Form Components
x-form
- Form container with CSRF protection and method spoofingx-form-group
- Form group with label and error handlingx-error
- Form field error messagex-ajax-error
- AJAX-specific error message
Form Elements
x-label
- Form label with optional required indicatorx-input
- Text input field with validation supportx-password
- Password input fieldx-email
- Email input fieldx-textarea
- Multi-line text areax-checkbox
- Checkbox inputx-radio
- Radio button inputx-select
- Dropdown select with option group supportx-multi-select
- Multi-select dropdownx-file-upload
- File upload with preview supportx-pick-date
- Date pickerx-toggle-switch
- Toggle switch input
Navigation Components
x-nav-link
- Navigation link with active state detectionx-nav-modal
- Navigation link that opens a modalx-dropdown
- Dropdown menux-dropdown-item
- Dropdown menu itemx-breadcrumb
- Breadcrumb navigationx-pagination
- Pagination controls
Table Components
x-table
- Responsive table with sorting and searchingx-table-head
- Table header cell with sorting supportx-table-body
- Table body containerx-table-row
- Table row with optional linkingx-table-cell
- Table cell with alignment options
🔍 Component Examples
Button Components
<!-- Basic button --> <x-button label="Click Me" /> <!-- Button with icon and color --> <x-button label="Save Changes" icon="fas fa-save" color="primary" /> <!-- Loading state button --> <x-button label="Processing" loading="true" loading-text="Please wait..." /> <!-- Button group --> <x-button-group> <x-button label="Left" /> <x-button label="Middle" /> <x-button label="Right" /> </x-button-group> <!-- Delete button with confirmation --> <x-delete action="{{ route('users.destroy', $user) }}" label="Delete User" />
Form Components
<x-form action="{{ route('users.store') }}" has-files="true"> <div class="row"> <div class="col-md-6"> <x-form-group name="first_name" label="First Name" required> <x-input name="first_name" placeholder="Enter first name" /> </x-form-group> </div> <div class="col-md-6"> <x-form-group name="last_name" label="Last Name" required> <x-input name="last_name" placeholder="Enter last name" /> </x-form-group> </div> </div> <x-form-group name="email" label="Email Address" required> <x-email name="email" placeholder="Enter email address" /> </x-form-group> <x-form-group name="role" label="Role"> <x-select name="role" :options="['admin' => 'Administrator', 'user' => 'User']" placeholder="Select role" /> </x-form-group> <x-form-group name="active" label="Status"> <x-toggle-switch name="active" label-on="Active" label-off="Inactive" checked /> </x-form-group> <div class="mt-3"> <x-button type="submit" label="Save" color="primary" /> <x-button type="button" label="Cancel" color="secondary" /> </div> </x-form>
Layout Components
<!-- Card with title and action buttons --> <x-card card-title="User Profile" card-buttons='<x-button label="Edit" color="primary" size="sm" />'> <p>Card content goes here...</p> </x-card> <!-- Modal dialog --> <x-button label="Open Modal" data-bs-toggle="modal" data-bs-target="#exampleModal" /> <x-modal id="exampleModal" modal-title="Example Modal"> <p>Modal content goes here...</p> <x-slot name="modalFooter"> <x-button type="button" color="secondary" data-bs-dismiss="modal">Close</x-button> <x-button type="button" color="primary">Save changes</x-button> </x-slot> </x-modal> <!-- Accordion with multiple items --> <x-accordion id="accordionExample"> <x-accordion-item accordion-id="accordionExample" title="Item 1" open> <p>First accordion content...</p> </x-accordion-item> <x-accordion-item accordion-id="accordionExample" title="Item 2"> <p>Second accordion content...</p> </x-accordion-item> </x-accordion> <!-- Progress Bar --> <x-progress value="75" color="success" show-label />
Navigation Components
<!-- Breadcrumb navigation --> <x-breadcrumb :items="[ ['url' => route('dashboard'), 'label' => 'Dashboard'], ['url' => route('users.index'), 'label' => 'Users'], 'Create User' ]" /> <!-- Tabbed interface --> <x-tab :tabs="[ 'personal' => ['label' => 'Personal Info', 'icon' => 'fas fa-user'], 'account' => ['label' => 'Account', 'icon' => 'fas fa-key'], 'preferences' => ['label' => 'Preferences', 'icon' => 'fas fa-cog'] ]"> <x-tab-content tab-id="{{ $tabs->id }}" id="personal" active="true"> <p>Personal information content...</p> </x-tab-content> <x-tab-content tab-id="{{ $tabs->id }}" id="account"> <p>Account information content...</p> </x-tab-content> <x-tab-content tab-id="{{ $tabs->id }}" id="preferences"> <p>Preferences content...</p> </x-tab-content> </x-tab> <!-- Dropdown menu --> <x-dropdown label="Actions" icon="fas fa-cog" color="primary"> <x-dropdown-item href="{{ route('users.show', $user) }}">View</x-dropdown-item> <x-dropdown-item href="{{ route('users.edit', $user) }}">Edit</x-dropdown-item> <x-dropdown-item divider /> <x-dropdown-item href="#" icon="fas fa-trash" class="text-danger">Delete</x-dropdown-item> </x-dropdown>
Table Component
<x-table striped hover responsive searchable sortable> <x-slot name="thead"> <x-table-head sortable>ID</x-table-head> <x-table-head sortable>Name</x-table-head> <x-table-head sortable>Email</x-table-head> <x-table-head sortable="false" align="center">Actions</x-table-head> </x-slot> <x-table-body> @foreach($users as $user) <x-table-row> <x-table-cell>{{ $user->id }}</x-table-cell> <x-table-cell>{{ $user->name }}</x-table-cell> <x-table-cell>{{ $user->email }}</x-table-cell> <x-table-cell align="center"> <x-button-group size="sm"> <x-button icon="fas fa-eye" color="primary" size="sm" /> <x-button icon="fas fa-edit" color="warning" size="sm" /> <x-delete action="{{ route('users.destroy', $user) }}" icon="fas fa-trash" color="danger" size="sm" /> </x-button-group> </x-table-cell> </x-table-row> @endforeach </x-table-body> </x-table> <!-- Pagination --> <x-pagination :collection="$users" align="end" with-text />
🔄 AJAX Form Support
BladeKit provides built-in AJAX form handling. For this to work correctly, ensure you have included jQuery in your application:
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
Then you can use the AJAX form component:
<x-form action="{{ route('contact.submit') }}" ajax="true" id="contactForm"> <!-- Form fields --> <!-- Success and error messages will be automatically handled --> </x-form>
🛠️ Customization
Extending Components
You can extend any component to modify its behavior:
namespace App\View\Components; use TwenyCode\LaravelBladeKit\Components\Button\Button as BaseButton; class CustomButton extends BaseButton { public function buttonClass(): string { // Add your custom logic $classes = parent::buttonClass(); $classes .= ' my-custom-class'; return $classes; } }
Then register your custom component in your AppServiceProvider
:
use Illuminate\Support\Facades\Blade; use App\View\Components\CustomButton; public function boot() { Blade::component('custom-button', CustomButton::class); }
Configuration Customization
You can customize the default styles and component registration in the config/tweny-bladekit.php
file:
// Example: Customizing button styles 'styles' => [ 'button' => [ 'base' => 'btn', 'primary' => 'btn-custom-primary', // Override primary button class 'secondary' => 'btn-secondary', // ... ], ],
📋 Requirements
- PHP 8.0+
- Laravel 8.0+
- Bootstrap 5 (for default styling)
- Laravel UI package
- jQuery (for AJAX form functionality)
- Font Awesome (for icons used in components)
🤝 Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Development Setup
- Clone the repository
- Install dependencies:
composer install
- Set up a Laravel application for testing
- Install the package in your test application via composer local path
"repositories": [ { "type": "path", "url": "../path/to/laravel-bladekit" } ], "require": { "twenycode/laravel-bladekit": "*" }
📄 License
The MIT License (MIT). Please see License File for more information.