定制 tilabs/manet 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

tilabs/manet

Composer 安装命令:

composer require tilabs/manet

包简介

A fluent class builder for Laravel blade components.

README 文档

README

⚡️ A simple and fluent way to add css classes to your Laravel blade components

License: MIT

Requirements

Version
PHP ^8.2
Laravel ^12.0

Installation & Usage

composer require tilabs/manet

Publish Test files

php artisan vendor:publish --tag=tilabs-manet-tests

Usage

Manet provides a ManetManager accessible via the Manet facade. The primary method you'll use is classList(), which returns a ClassBuilder instance.

Basic Usage

use Tilabs\Manet\Facades\Manet;

// Simple class addition
$classes = Manet::classList()->add('p-4 rounded shadow');
// Output: "p-4 rounded shadow"

// Chaining add()
$classes = Manet::classList()
    ->add('text-blue-500')
    ->add('font-bold');
// Output: "text-blue-500 font-bold"

// Initial classes
$classes = Manet::classList('base-class another-base')
    ->add('extra-class');
// Output: "base-class another-base extra-class"

Adding Multiple Classes

You can pass an array of classes to add():

$classes = Manet::classList()->add(['p-4', 'bg-gray-100', 'rounded']);
// Output: "p-4 bg-gray-100 rounded"

Conditional Classes with add()

Leverage Laravel's array-to-CSS-classes format:

$isActive = true;
$hasError = false;

$classes = Manet::classList('btn')
    ->add([
        'btn-active' => $isActive,
        'btn-primary' => $isActive && !$hasError,
        'btn-danger' => $hasError,
        'opacity-50' => !$isActive,
    ]);
// If $isActive = true, $hasError = false: "btn btn-active btn-primary"
// If $isActive = false, $hasError = true: "btn btn-danger opacity-50"

Conditional Logic with when()

The when() method adds classes if the given condition is true.

$isPrimary = true;
$isLarge = false;

$classes = Manet::classList('button')
    ->when($isPrimary, 'button-primary')
    ->when($isLarge, 'button-large', 'button-medium'); // Optional default if condition is false

// If $isPrimary = true, $isLarge = false: "button button-primary button-medium"

when() with a Callable

For more complex logic, pass a closure as the second argument. The closure will receive the ClassBuilder instance and the condition's result.

$userType = 'admin';

$classes = Manet::classList('user-profile')
    ->when($userType === 'admin', function ($classBuilder) {
        return $classBuilder->add('bg-red-500 text-white p-2');
    })
    ->when($userType === 'editor', function ($classBuilder) {
        return $classBuilder->add('bg-yellow-300 p-1');
    });

// If $userType = 'admin': "user-profile bg-red-500 text-white p-2"

Conditional Logic with unless()

The unless() method is the inverse of when(). It adds classes if the given condition is false.

$isDisabled = false;

$classes = Manet::classList('form-input')
    ->unless($isDisabled, 'focus:ring-2 focus:ring-blue-500');

// If $isDisabled = false: "form-input focus:ring-2 focus:ring-blue-500"

unless() with a Callable

Similar to when(), unless() also supports callables.

$isComplete = true;

$classes = Manet::classList('task-item')
    ->unless($isComplete, function ($classBuilder) {
        return $classBuilder->add('border-l-4 border-orange-400');
    });

// If $isComplete = true: "task-item"
// If $isComplete = false: "task-item border-l-4 border-orange-400"

License

Manet is open‑sourced software licensed under the MIT license.

tilabs/manet 适用场景与选型建议

tilabs/manet 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 257 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 05 月 29 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 tilabs/manet 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 tilabs/manet 我们能提供哪些服务?
定制开发 / 二次开发

基于 tilabs/manet 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 257
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 4
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-05-29