Search by

datalogix / tallkit

ricardogobbosouza

A set of components to utilize in your Laravel Blade views using TALL stack.

Package info

github.com/datalogix/tallkit

Homepage

Language:Blade

pkg:composer/datalogix/tallkit

Statistics

Installs: 308

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-main 2026-09-14 19:10 UTC

This package is auto-updated.

Last update: 2026-09-14 19:11:01 UTC


README

A set of Blade components for the TALL stack (Tailwind, Alpine.js, Laravel, Livewire).

Installation

composer require datalogix/tallkit

The package registers TALLKit\TALLKitServiceProvider automatically via Laravel package discovery. Include the compiled assets in your app (see dist/tallkit.js / dist/tallkit.min.js) and the resources/css stylesheets in your Tailwind build.

Usage

Components are anonymous Blade views registered under the tk: tag namespace:

<tk:button variant="solid" icon="check">
    Save
</tk:button>

<tk:alert type="success" title="Done">
    Your changes were saved.
</tk:alert>

The standard Laravel <x-tallkit::*> syntax also works if you prefer it.