laravel-tools maintained by rajtechnologies
Description
All Type of Base Tools to Helping Development and Repository Generator
Author
Last update
2023/10/02 09:08
(dev-master)
License
Downloads
143
Tags
migrations - generator - php - cli - pattern - laravel - services - pivot - action - artisan - laravel-pwa - pwa-laravel - laravel-clear-cache - laravel-routes-view-list - laravel-http-status-code-list
laravel-tools
Laravel Development Tools https://github.com/RajTechnologiesPvtLtd/laravel-tools
Installation on laravel
- 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,
Package Features
- Clear Cache
- Routes List
- HTTP Status Code List
- Laravel App Convert To PWA App
URL Routes
| 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 |
PWA App
- Open your
config/app.phpand add the following to theprovidersarray:
'LaravelPwa' => \RajTechnologies\Tools\LaravelPwa::class,
Publish the Assets For PWA App
Run the following command to publish config file,
php artisan laravel-pwa:publish
Configure PWA
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>
Contributing
Maintenance by Raj Technologies Pvt Ltd (For Laravel Starter Project)
License
The Laravel Tools is open-sourced software licensed under the MIT license.