A Page Thumbnail tile for the Laravel Dashboard
quarterloop/laravel-dashboard-page-thumb-tile is a Laravel package for a page thumbnail tile for the laravel dashboard.
It currently has 0 GitHub stars and 14 downloads on Packagist (latest version v1.0.8).
Install it with composer require quarterloop/laravel-dashboard-page-thumb-tile.
Discover more Laravel packages by quarterloop
or browse all Laravel packages to compare alternatives.
Last updated
A friendly explanation of what your tile does.
This tile can be used on the Laravel Dashboard.
You can install the package via composer:
composer require quarterloop/laravel-dashboard-dns-tile
In your dashboard view you use the livewire:google-page-speed-tile component.
<x-dashboard>
<livewire:google-page-speed-tile position="e7:e16" />
</x-dashboard>
Use the php artisan command to fetch Page Speed data.
php artisan dashboard:fetch-google-page-speed-data
Use this snippet to schedule the command in app/Console/Commands/Kernel.php
$schedule->command(\Quarterloop\DNSTile\Commands\FetchDNSCommand::class)->daily();
Also add the following code snippet in app/console/kernel.php under "$commands" in a new line:
\Quarterloop\DNSTile\Commands\FetchDNSCommand::class,
Insert this in routes/web.php - this enables the manual-refresh-button in tile
Route::get('/refresh-dns', function() {
Artisan::call('dashboard:fetch-dns-data');
return back();
})->name('fetch-dns');
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.