soluzione-software/laravel-pwa is a Laravel package.
It currently has 0 GitHub stars and 67 downloads on Packagist (latest version 0.2.0).
Install it with composer require soluzione-software/laravel-pwa.
Discover more Laravel packages by soluzione-software
or browse all Laravel packages to compare alternatives.
Last updated
Note the package is currently in beta. During the beta period things can and probably will change. Don't use it in production until a stable version has been released. We appreciate you helping out with testing and reporting any bugs.
PWA for Laravel App.
composer require soluzione-software/laravel-pwa
resources/views/layouts/app.blade.php view:<!doctype html>
<html lang="en">
<head>
@include('pwa::head')
<!-- other tags -->
</head>
<body>
@yield('content')
<!-- Scripts -->
@include('pwa::footer')
<!-- other scripts -->
</body>
</html>
public files:php artisan vendor:publish --tag=pwa-public
public/app.webmanifest.Add the following line to .env in order to disable the package:
PWA_ENABLED=false