Installable PWA for laravel. Implement PWA in your laravel website within 5 mins.
| Lravel PWA version | Laravel version | 
|---|---|
| 1.0 | ^5.6, ^6.0, ^7.0 | 
| 1.1 | ^8.0 | 
| 1.2 | ^8.0 | 
It only suppoorts HTTPS and localhost (both HTTP and HTTPS)
composer require codexshaper/laravel-pwa
php artisan pwa:install
{{ pwa_meta() }}
OR
@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);
});
- Md Abu Ahsan Basir - Creator and Maintainer - github
