rajtechnologies/laravel-tools

All Type of Base Tools to Helping Development and Repository Generator

v1.0.0 2023-04-09 07:04 UTC

This package is auto-updated.

Last update: 2024-03-31 08:05:18 UTC


README

Laravel Development Tools https://github.com/RajTechnologiesPvtLtd/laravel-tools

Installation on laravel

  1. In order to install Laravel Tools, just add the following to your composer. Then run composer:
composer require rajtechnologies/laravel-tools
  1. Open your config/app.php and add the following to the providers array:
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.php and add the following to the providers array:
    '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.