Laravel Community Tools by Tighten
Laravel Nova icon Nova Packages

Readme

We stand with Ukraine πŸ‡ΊπŸ‡¦

Nova HTML Card

Latest Stable Version Total Downloads Type coverage

Adds a card to the Laravel Nova dashboard with any arbitrary HTML content.

image

Installation

You can install the package in to a Laravel app that uses Nova via composer:

composer require interaction-design-foundation/nova-html-card

Usage

Register your new card.

use InteractionDesignFoundation\HtmlCard\HtmlCard;

public function cards()
{
    return [
        (new HtmlCard())->width('1/3')->html('<h1>Hello World!</h1>'),
        (new HtmlCard())->width('1/3')->markdown('# Hello World!'),
        (new HtmlCard())->width('1/3')->view('cards.hello', ['name' => 'World']),
     ];
}

Options

  • Set content
    • ->html('<h1>Hello!</h1>'): Set HTML or plain content.
    • ->markdown('# Hello!'): Set Markdown content that will be converted into HTML.
    • ->view('path.to.view', []): Specify blade view file and optionally pass an array of data to view.
  • Styling
    • ->center(false): Center card's content. false by default.
    • ->withoutCardStyles(true): Whether to use standard Nova Card styles for a card (background, padding, etc). false by default.
    • ->withBasicStyles(): Adds some basic styling to the HTML elements in the card. Useful when rendering Markdown.

Why this package?

There are a few packages with similar functionality. Our package provides an API to cover all cases covered by these packages plus additionally provides some unique features like:

  • Markdown support
  • easy switch between class Nova-card look and raw-HTML look
  • Simple, Laravel-like API

Changelog

Please see Releases for more information on what has changed recently.

Updating assets

After updating assets, you need to "recompile" them for production:

composer i
npm i
npm run nova:install
npm run prod

Contributing

Please see CONTRIBUTING for details.

License

The MIT License (MIT). Please see License File for more information.

Screenshots

Back to Top
Added 6 years ago
Last updated 1 Month Ago
Version 3.4.2
Nova Version ^4.20 || ^5.0
Composer
interaction-design-foundation/nova-html-card
GitHub stars 67
Packagist downloads 681,458

Favorites

36 users favorited

Rating

5.00
(out of 5)
β˜…β˜…β˜…β˜…β˜…
β˜…β˜…β˜…β˜…
β˜…β˜…β˜…
β˜…β˜…
β˜…
7 ratings

Author

Contributors

Brought to you by Tighten

Issues/Feature Requests Stats Package Ideas