Laravel Development Tools https://github.com/RajTechnologiesPvtLtd/laravel-tools
- In order to install Laravel Tools, just add the following to your composer. Then run
composer:
composer require rajtechnologies/laravel-tools- Open your
config/app.phpand add the following to theprovidersarray:
RajTechnologies\Tools\ToolServiceProvider::class,- Clear Cache
- Routes List
- HTTP Status Code List
- Laravel App Convert To PWA App
| Name | URL | Description |
|---|---|---|
| Clear Cache | clear-cache | all type cache clear in larevel |
| HTTP status Code | httplist | HTTP Status Code List (cheat sheet) |
| Routes List | routeslist | All Routes List |
| API Routes List | routeslist?only=api | Only API Routes List |
- Open your
config/app.phpand add the following to theprovidersarray:
'LaravelPwa' => \RajTechnologies\Tools\LaravelPwa::class,Run the following command to publish config file,
php artisan laravel-pwa:publish
Add following code in root blade file in header section.
<!-- PWA -->
<meta name="theme-color" content="#6777ef"/>
<link rel="apple-touch-icon" href="{{ asset('logo.PNG') }}">
<link rel="manifest" href="{{ asset('/manifest.json') }}">Add following code in root blade file in before close the body.
<script src="{{ asset('/sw.js') }}"></script>
<script>
if (!navigator.serviceWorker.controller) {
navigator.serviceWorker.register("/sw.js").then(function (reg) {
console.log("Service worker has been registered for scope: " + reg.scope);
});
}
</script>The Laravel Tools is open-sourced software licensed under the MIT license.