Download the PHP package gehrisandro/tailwind-merge-laravel without Composer
On this page you can find all versions of the php package gehrisandro/tailwind-merge-laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download gehrisandro/tailwind-merge-laravel
More information about gehrisandro/tailwind-merge-laravel
Files in gehrisandro/tailwind-merge-laravel
Package tailwind-merge-laravel
Short Description TailwindMerge for Laravel merges multiple Tailwind CSS classes by automatically resolving conflicts between them
License MIT
Informations about the package tailwind-merge-laravel
TailwindMerge for Laravel allows you to merge multiple Tailwind CSS classes and automatically resolves conflicts between classes by removing classes conflicting with a class defined later. This is especially helpful when you want to override Tailwind CSS classes in your Blade components.
A Laravel / PHP port of tailwind-merge by dcastil.
Supports Tailwind v3.0 up to v3.3.
If you find this package helpful, please consider sponsoring the maintainer:
- Sandro Gehri: github.com/sponsors/gehrisandro
If you are NOT using Laravel, you can use the TailwindMerge for PHP directly.
Table of Contents
- Get Started
- Usage
- Laravel Blade Components
- Laravel Blade Directive
- Everywhere else in Laravel
- Configuration
- Custom Tailwind Config
- Contributing
Get Started
Requires Laravel 10
First, install TailwindMerge for Laravel
via the Composer package manager:
Optionally, publish the configuration file:
This will create a config/tailwind-merge.php
configuration file in your project, which you can modify to your needs
using environment variables. For more information, see the Configuration section:
Finally, you may use TailwindMerge
in various places like your Blade components:
TailwindMerge
is not only capable of resolving conflicts between basic Tailwind CSS classes, but also handles more complex scenarios:
It's possible to pass the classes as a string, an array or a combination of both:
Usage
For in depth documentation and general PHP examples, take a look at the gehrisandro/tailwind-merge-php repository.
Use in Laravel Blade Components
Create your Blade components as you normally would, but instead of specifying the class
attribute directly, use the mergeClasses
method:
Now you can use your Blade components and pass additional classes to merge:
This will render the following HTML:
Note: Usage of
$attributes->merge(['class' => '...'])
is currently not supported due to limitations in Laravel.
Merge classes on multiple elements
By default Laravel allows you to only merge classes in one place. But with TailwindMerge
you can merge classes on multiple elements by using twMergeFor()
:
You can now specify additional classes for the button and the svg icon:
This will render the following HTML:
Note: Use
withoutTwMergeClasses()
on your main attributes bag, otherwise allclass:xyz
attributes will be rendered in the output.
Use Laravel Blade Directive
The package registers a Blade directive which can be used to merge classes in your Blade views:
If you want to rename the blade directive, you can do so in the config/tailwind-merge.php
configuration file:
You could even disable the directive completely by setting it to null
:
Everywhere else in Laravel
If you don't use Laravel Blade, you can still use TailwindMerge
by using the Facade or the helper method directly:
Facade
Helper Method
More usage examples
Take a look at the TailwindMerge for PHP repository.
Configuration
If you are using Tailwind CSS without any extra config, you can use TailwindMerge right away. And stop reading here.
If you're using a custom Tailwind config, you may need to configure TailwindMerge as well to merge classes properly.
By default TailwindMerge is configured in a way that you can still use it if all the following apply to your Tailwind config:
- Only using color names which don't clash with other Tailwind class names
- Only deviating by number values from number-based Tailwind classes
- Only using font-family classes which don't clash with default font-weight classes
- Sticking to default Tailwind config for everything else
If some of these points don't apply to you, you need to customize the configuration.
Configure Prefix
You can configure the prefix directly in the config/tailwind-merge.php
configuration file or by setting the environment variable:
Modify merge process
If TailwindMerge is not able to merge your changes properly you can modify the merge process by modifying existing class groups or adding new class groups.
For example, if you want to add a custom font size of "very-large":
For a more detailed explanation of the configuration options, visit the original package documentation.
Contributing
Thank you for considering contributing to TailwindMerge for Laravel
! The contribution guide can be found in the CONTRIBUTING.md file.
TailwindMerge for PHP
is an open-sourced software licensed under the MIT license.
All versions of tailwind-merge-laravel with dependencies
guzzlehttp/guzzle Version ^7.5.1
laravel/framework Version ^10.9.0|^11.0
gehrisandro/tailwind-merge-php Version ^v1.1.0