standapp / pulse-bigtable
A Laravel Pulse card to show big tables in database
Installs: 2 194
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 1
pkg:composer/standapp/pulse-bigtable
Requires
- php: >=8.0
- ext-json: *
- laravel/pulse: 1.*
Requires (Dev)
- mockery/mockery: ^1
- orchestra/testbench: ^9.1.2
- phpunit/phpunit: ^10
README
This card will show you big tables in your database.
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.