yaroslawww / nova-text-card
1.1.0
2023-07-10 06:12 UTC
Requires
- php: ^8.1
- laravel/nova: ^4.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.20
- orchestra/testbench: ^8.5
- phpunit/phpunit: ^10.2
- psalm/plugin-laravel: ^2.8
- vimeo/psalm: ^5.13
README
用于显示 HTML 和文本的简单卡片。用于分组块和分组标题。
| Nova | 包 |
|---|---|
| V4 | V1 |
安装
composer require think.studio/nova-text-card
使用方法
<?php class Main extends Dashboard { public function cards() { return [ \NovaTextCard\NovaTextCard::make() ->width('full') ->content('<h1 class="text-center text-3xl text-gray-500 font-light">Welcome to the application!</h1>') ]; } }
