santran / slownetwork
Integrate Check Slow Network Connection to Laravel 5.2 and above.
Installs: 3 761
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=5.5.9
This package is not auto-updated.
Last update: 2024-11-23 21:25:50 UTC
README
Install (Laravel)
Install via composer
composer require santran/slownetwork:dev-master
Add Service Provider to config/app.php
in providers
section
SanTran\SlowNetwork\SlowNetworkProvider::class
Publish config file and view file, open console and enter bellow command:
php artisan vendor:publish
Config file 'slownetwork.php'
'enable' => true, // Enable check slow network, Disable set : false 'version' => 1, 'text.taking.long.time' => "The website is taking a long time to load.", // Text show on alert Slow Connect 'text.reload.page' => "You can reload this page by", // Text show on alert Slow Connect 'text.click.here' => "CLICK HERE",// Text show on alert Slow Connect 'text.dismiss' => "[x] dismiss",// Button Text show on alert Slow Connect 'margin.bottom' => 30, 'margin.bottom' => 45, 'width' => 320,// alert Slow Connect width 'height' => 45,// alert Slow Connect height 'color' => "#F0DE7D", // alert Slow Connect background color 'timeout' => 5000, // Set timeout show slow connection wait while page load content
How to use ? Open your layouts file and add js to view.
@include("slownetwork.slownetwork")