Laravel PWA is a package for laravel that provides an easy way to integrate Progressive Web Apps into your Laravel application.
| Package | PHP | Laravel |
|---|---|---|
| v12.0.0 | ^8.2 - ^8.4 | 12.x |
You can install the package via composer:
composer require codebar-ag/laravel-pwaYou can publish and run the migrations with:
php artisan vendor:publish --tag="laravel-pwa-migrations"
php artisan migrateYou can publish the config file with:
php artisan vendor:publish --tag="laravel-pwa-config"This is the contents of the published config file:
return [
];Optionally, you can publish the views using
php artisan vendor:publish --tag="laravel-pwa-views"$laravelPWA = new CodebarAg\LaravelPWA();
echo $laravelPWA->echoPhrase('Hello, CodebarAg!');composer testPlease see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.
