standapp/pulse-bigtable

A Laravel Pulse card to show big tables in database

1.0.0 2024-06-21 12:42 UTC

This package is auto-updated.

Last update: 2024-09-21 15:08:12 UTC


README

This card will show you big tables in your database.

image

Installation

You can install the package via composer:

composer require standapp/pulse-bigtable

Publish the config file

php artisan vendor:publish --tag=pulse-bigtable

Register the recorder

You must add the bigtable recorder to your config/pulse.php file:

return [
    // ...
    'recorders' => [
         \StandApp\PulseBigTable\Recorders\BigTableRecorder::class => [],
  ],
]

You must also run the php artisan pulse:check command.

Add the card to your dashboard

In your dashboard view, you can use the bigtable card type:

<x-pulse>
    // ....
    <livewire:big-table cols='6' />
</x-pulse>

That's it! You should now see the big tables card on your pulse dashboard.