think.studio / nova-text-card
Laravel nova text card
Installs: 12 708
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
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
Simple card to display html and text. Useful to group blocks and group titles.
Install
composer require think.studio/nova-text-card
Usage
<?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>') ]; } }