xslainpwa / laravel-pwa
Laravel Progressive Web App
3.0.1
2024-09-17 17:45 UTC
Requires
- php: ^8.2
- illuminate/support: ^11.0
Requires (Dev)
- orchestra/testbench: ^9.0
- phpunit/phpunit: ^11.0
This package is auto-updated.
Last update: 2025-02-17 18:42:28 UTC
README
Description
Installable PWA for laravel. Implement PWA in your laravel website within 5 mins.
Requirements
It only suppoorts HTTPS and localhost (both HTTP and HTTPS)
Click here to see video instruction.
Download
composer require xslainpwa/laravel-pwa
Install
php artisan pwa:install
Use: Add below code before closing head tag
{{ pwa_meta() }}
OR
@PWA
Finaly configure your own information. Go to {{url}}/pwa
Additionaly you may add below script after all js loaded to work perfectly bootstrap 4 custom file input
$(".custom-file-input").on("change", function() {
var fileName = $(this).val().split("\\").pop();
$(this).siblings(".custom-file-label").addClass("selected").html(fileName);
});
Contributors
- Md Abu Ahsan Basir - Creator and Maintainer - github