PHPackages                             sandulat/larabels - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Localization &amp; i18n](/categories/localization)
4. /
5. sandulat/larabels

ActiveLibrary[Localization &amp; i18n](/categories/localization)

sandulat/larabels
=================

Laravel localization labels dashboard

v0.2.1(6y ago)11314[20 PRs](https://github.com/sandulat/larabels/pulls)MITPHPPHP ^7.1

Since Jul 3Pushed 3y agoCompare

[ Source](https://github.com/sandulat/larabels)[ Packagist](https://packagist.org/packages/sandulat/larabels)[ Docs](https://github.com/sandulat/larabels)[ RSS](/packages/sandulat-larabels/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (3)Dependencies (6)Versions (24)Used By (0)

[![](https://camo.githubusercontent.com/ea30305b8d358663d6fb45f03a994b0965de643f7e98d5db29c6ee244f2f7b72/68747470733a2f2f636f6c746f72617070732e636f6d2f696d616765732f6c61726162656c732e706e67)](https://camo.githubusercontent.com/ea30305b8d358663d6fb45f03a994b0965de643f7e98d5db29c6ee244f2f7b72/68747470733a2f2f636f6c746f72617070732e636f6d2f696d616765732f6c61726162656c732e706e67)

🌍 Larabels - Laravel localization labels dashboard 🌏

[![](https://camo.githubusercontent.com/de08773ec9536184bfb8fc2fab4fe3393a6abcc397ca804a00b36368f1737551/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f767072652f73616e64756c61742f6c61726162656c732e737667)](https://camo.githubusercontent.com/de08773ec9536184bfb8fc2fab4fe3393a6abcc397ca804a00b36368f1737551/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f767072652f73616e64756c61742f6c61726162656c732e737667)[![](https://camo.githubusercontent.com/963d3eb530ca2c4069a9eadaeab6ac17de471243b72707e19de792bc6f1fd417/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f73616e64756c61742f6c61726162656c732e737667)](https://camo.githubusercontent.com/963d3eb530ca2c4069a9eadaeab6ac17de471243b72707e19de792bc6f1fd417/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f73616e64756c61742f6c61726162656c732e737667)[ ![](https://camo.githubusercontent.com/5f70c0b0d3c19f4dc3409d2840d1f36f36ccdfeadedbd48be69ed87777bae56f/68747470733a2f2f696d672e736869656c64732e696f2f747769747465722f666f6c6c6f772f73616e64756c61742e7376673f7374796c653d736f6369616c)](https://twitter.com/intent/follow?screen_name=sandulat)

About
-----

[](#about)

Larabels is an editor for your Laravel localization files.

The main purpose of this package is to allow non-technical people commit label updates directly to the repository in development environments. It automatically parses all languages by folders from `resources/lang` and all localization files from each language.

Larabels is built to work exclusively with Git. As you've might seen in the screenshot above, we've got 3 buttons fixed to the bottom of screen:

`Save` - all labels from all languages will be exported to `resources/lang`.

`Reset` - all the changes exported to `resources/lang` are reverted to original state.

`Commit & Push` - all the changes are commited and pushed to `origin HEAD`.

Note: you (or the server) must have passwordless push access to the repository.

Installation
------------

[](#installation)

```
composer require sandulat/larabels
php artisan larabels:install
```

The last command will publish Larabel's service provider, config and public front-end assets.

Note: to re-publish the front-end assets when updating the package use: `php artisan larabels:publish`

Authorization
-------------

[](#authorization)

By default Larabels will be accessible by anyone in a local environment only. However it provides a customizable gate that limits access in production environments. See the `gate()` method inside the published `LarabelsServiceProvider`:

```
/**
 * Register the Larabels gate.
 *
 * This gate determines who can access Larabels in non-local environments.
 *
 * @return void
 */
protected function gate()
{
    Gate::define('viewLarabels', function ($user) {
        return in_array($user->email, [
            //
        ]);
    });
}
```

Configuration
-------------

[](#configuration)

Larabels works without any additional configuration, however it provides a config (`config/larabels.php`) with these options:

OptionDefault ValueDescription`enabled``env('LARABELS_ENABLED', true)`This option may be used to disable Larabels direct route access. Note: Larabels views will ignore this option so you can include them in your project.`middleware``[\Sandulat\Larabels\Http\Middleware\Authorize::class]`These middlewares will be assigned to every Larabels route. Note that in any case Larabels routes implicitly belong to the "web" middleware.`whitelist``[]`This value determines which localization files should be included in the dashboard. Files will be loaded from `/resources/lang/{locale}`. Use file names without extension: `auth`, `pagination`, `validation`, `passwords`, etc. Leave empty to load all files.`path``/larabels`This value determines the base route path where the dashboard will be accessible from.Customization
-------------

[](#customization)

If you would like to include the Larabels editor view directly into your personal dashboard, set the environment option `LARABELS_ENABLED` to `false` to disable direct access to the Larabels route. Now add `@include('larabels::app')` wherever you'd like.

Larabels is splitted into partials so you can easily cutomize the look. Inside the path `resources/views` create the folder `vendor/larabels`.

Now you can override the default Larabels views:

- `components/card.blade.php`
- `partials/action_buttons.blade.php`
- `partials/container.blade.php`
- `partials/label.blade.php`
- `partials/locale_button.blade.php`

Credits
-------

[](#credits)

Created by [Stratulat Alexandru](https://twitter.com/sandulat).

[ ![](https://camo.githubusercontent.com/756d7f35cca5ec8d20b05d608c87ff83462bcb262adc26c28d15de98d216e8c4/68747470733a2f2f636f6c746f72617070732e636f6d2f696d616765732f6c6f676f5f7472616e73706172656e742e706e67)](https://coltorapps.com/)

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

3

Last Release

2505d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/38b9158418c50b87e2da493b0bc7ca96f57867bb2608e5fd14ac191875dfca4b?d=identicon)[allexxander](/maintainers/allexxander)

---

Top Contributors

[![sandulat](https://avatars.githubusercontent.com/u/7345874?v=4)](https://github.com/sandulat "sandulat (9 commits)")

---

Tags

labelslabels-editorlaravellaravel-packagelaravellocalizationlabelssandulatlarabels

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/sandulat-larabels/health.svg)

```
[![Health](https://phpackages.com/badges/sandulat-larabels/health.svg)](https://phpackages.com/packages/sandulat-larabels)
```

###  Alternatives

[mcamara/laravel-localization

Easy localization for Laravel

3.5k9.1M112](/packages/mcamara-laravel-localization)[kkomelin/laravel-translatable-string-exporter

Translatable String Exporter for Laravel

3291.4M10](/packages/kkomelin-laravel-translatable-string-exporter)[codezero/laravel-localized-routes

A convenient way to set up, manage and use localized routes in a Laravel app.

543638.1k4](/packages/codezero-laravel-localized-routes)[vildanbina/laravel-auto-translation

A Laravel package for automating the translation of language files.

9220.5k2](/packages/vildanbina-laravel-auto-translation)[opgginc/codezero-laravel-localized-routes

A convenient way to set up, manage and use localized routes in a Laravel app.

2770.1k1](/packages/opgginc-codezero-laravel-localized-routes)[erag/laravel-lang-sync-inertia

A powerful Laravel package for syncing and managing language translations across backend and Inertia.js (Vue/React) frontends, offering effortless localization, auto-sync features, and smooth multi-language support for modern Laravel applications.

3812.2k](/packages/erag-laravel-lang-sync-inertia)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
