wamesk/laravel-nova-app-version-manager

There is no license information available for the latest version (1.0.1) of this package.

1.0.1 2024-01-19 09:15 UTC

This package is auto-updated.

Last update: 2024-04-09 07:10:51 UTC


README

Installation

composer require wamesk/laravel-nova-app-version-manager

Add LaravelNovaAppVersionManagerProvider.php in app.php.

'providers' => [
    ...
    LaravelNovaAppVersionManager\LaravelNovaAppVersionManagerProvider::class,
    ...
],

Next step is to publish all translations and nova resource. So you can change them to fit your needs.

php artisan vendor:publish --provider="Wame\LaravelNovaAppVersionManager\LaravelNovaAppVersionManagerProvider"

Translations

You can find translations here.

You can see now it has limited translations being the folders like "en"

You can create new translations by creating another folder with app_version.php inside.

Also, you can edit existing translations if you need.

resourses/
    └── lang/
        └── vendor/
            └── laravel-app-version/
                ├── sk/
                │   └── app_version.php
                ├── cz/
                │   └── app_version.php
                └── en/
                    └── app_version.php