PHPackages                             backpack/langfilemanager - 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. [Admin Panels](/categories/admin)
4. /
5. backpack/langfilemanager

ActiveLibrary[Admin Panels](/categories/admin)

backpack/langfilemanager
========================

An interface to edit language files, for Laravel Backpack.

5.0.1(2y ago)91230.1k—9.8%411MITPHP

Since Sep 7Pushed 2y ago14 watchersCompare

[ Source](https://github.com/Laravel-Backpack/LangFileManager)[ Packagist](https://packagist.org/packages/backpack/langfilemanager)[ Docs](https://github.com/laravel-backpack/langfilemanager)[ RSS](/packages/backpack-langfilemanager/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (3)Versions (44)Used By (1)

Backpack LangFileManager
========================

[](#backpack-langfilemanager)

> ### **Deprecation note**
>
> [](#deprecation-note)
>
> Backpack team has just released a new package: [Translation Manager](https://github.com/Laravel-Backpack/translation-manager). This new package uses [Spatie Translation Loader](https://github.com/spatie/laravel-translation-loader) and it works in a more predictable way using the database to store translations.
>
> We **highly** recommend you to switch to [Translation Manager](https://github.com/Laravel-Backpack/translation-manager).

---

[![Latest Version on Packagist](https://camo.githubusercontent.com/7546b958ff60ff5370ac367c22bbafc5e5e6e9c1057a374fe6e5c9f45d059f53/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6261636b7061636b2f6c616e6766696c656d616e616765722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/backpack/langfilemanager)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/bebad2add56881052ac922a9082b3a74ddc6ddee61a16870a287a79b56e8eceb/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f4c61726176656c2d4261636b7061636b2f6c616e6766696c656d616e616765722f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/Laravel-Backpack/langfilemanager)[![Coverage Status](https://camo.githubusercontent.com/22ac8993eaccdff4b09d5d04595417afa8156d91f4db8203e424cb1d1f6349d6/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f6c61726176656c2d6261636b7061636b2f6c616e6766696c656d616e616765722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/laravel-backpack/langfilemanager/code-structure)[![Quality Score](https://camo.githubusercontent.com/7a3a0ec3cba0bfba108fe8d0d7501862e4992df8eacc5c0a8ac692aaa9f27f8c/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6c61726176656c2d6261636b7061636b2f6c616e6766696c656d616e616765722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/laravel-backpack/langfilemanager)[![Style CI](https://camo.githubusercontent.com/1fce7ed9e49c6445df97dc423e6188c0d52d5802bddab5ef221a659b07308a17/68747470733a2f2f7374796c6563692e696f2f7265706f732f35333639313634332f736869656c64)](https://styleci.io/repos/53691643)[![Total Downloads](https://camo.githubusercontent.com/21e7aa6a01ddfa4219f9e43200587bc14d2a4593c6c590da83389378887e456f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6261636b7061636b2f6c616e6766696c656d616e616765722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/backpack/langfilemanager)

A quick interface to edit language files, for Laravel Backpack.

***Note:** this interface allows the admin to directly edit the language files stored in `resources/lang`. Which might not be a great idea in production, if you have those files commited to git and/or use auto-deployment.*

> ### Security updates and breaking changes
>
> [](#security-updates-and-breaking-changes)
>
> Please **[subscribe to the Backpack Newsletter](http://backpackforlaravel.com/newsletter)** so you can find out about any security updates, breaking changes or major features. We send an email every 1-2 months.

Install in Backpack v6.x
------------------------

[](#install-in-backpack-v6x)

### Step 1. Install via Composer

[](#step-1-install-via-composer)

```
composer require backpack/langfilemanager
```

### Step 2. Run the migration, seed and file publishing

[](#step-2-run-the-migration-seed-and-file-publishing)

```
php artisan vendor:publish --provider="Backpack\LangFileManager\LangFileManagerServiceProvider" --tag="migrations" #publish the migration file
php artisan migrate
php artisan db:seed --class="Backpack\LangFileManager\database\seeds\LanguageTableSeeder"
php artisan vendor:publish --provider="Backpack\LangFileManager\LangFileManagerServiceProvider" --tag="config" #publish the config file
php artisan vendor:publish --provider="Backpack\LangFileManager\LangFileManagerServiceProvider" --tag="lang" #publish the lang files
```

### Step 3. Add menu items for it

[](#step-3-add-menu-items-for-it)

Add a menu item for it in resources/views/vendor/backpack/ui/inc/menu\_items.blade.php:

```

```

Upgrading from 4.x to 5.x
-------------------------

[](#upgrading-from-4x-to-5x)

You should have no problems upgrading, there have been no breaking changes. Just require the new version.

Upgrading from 3.x to 4.x
-------------------------

[](#upgrading-from-3x-to-4x)

- Flags are no longer supported on the Language CRUD, until version 3 admins could browse an image for the language flag, we now recommend developers to setup those images in advance, having them in a public folder like `public\flags\en.svg` `public\flags\ro.svg`.

Usage
-----

[](#usage)

Tell LangFileManager what langfiles NOT to show, in config/backpack/langfilemanager.php:

```
// Language files to NOT show in the LangFileManager
//
'language_ignore' => ['admin', 'pagination', 'reminders', 'validation', 'log', 'crud'],
```

Or just try at **your-project-domain/admin/language/texts**

Screenshots
-----------

[](#screenshots)

See

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Please **[subscribe to the Backpack Newsletter](http://backpackforlaravel.com/newsletter)** so you can find out about any security updates, breaking changes or major features. We send an email every 1-2 months.

Credits
-------

[](#credits)

- [Alin Ghitu](https://github.com/ghitu) - author
- [Cristian Tabacitu](http://tabacitu.ro) - contributor
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

Hire us
-------

[](#hire-us)

We've spend more than 10.000 hours creating, polishing and maintaining administration panels on Laravel. We've developed e-Commerce, e-Learning, ERPs, social networks, payment gateways and much more. We've worked on admin panels *so much*, that we've created one of the most popular software in its niche - just from making public what was repetitive in our projects.

If you are looking for a developer/team to help you build an admin panel on Laravel, look no further. You'll have a difficult time finding someone with more experience &amp; enthusiasm for this. This is *what we do*. [Contact us - let's see if we can work together](https://backpackforlaravel.com/need-freelancer-or-development-team).

###  Health Score

47

—

FairBetter than 94% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity50

Moderate usage in the ecosystem

Community31

Small or concentrated contributor base

Maturity76

Established project with proven stability

 Bus Factor1

Top contributor holds 63.9% 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 ~78 days

Recently: every ~171 days

Total

40

Last Release

847d ago

Major Versions

1.0.26 → 2.0.02019-10-04

2.0.2 → 3.0.02020-05-06

3.0.0 → 4.1.x-dev2020-05-06

3.0.3 → 4.0.02022-03-07

v4.x-dev → 5.0.02023-07-01

### Community

Maintainers

![](https://www.gravatar.com/avatar/f2073da18c2e24ef792dd3e9aa51d5427a79a7abfd252788e57eeb1007a89f87?d=identicon)[tabacitu](/maintainers/tabacitu)

---

Top Contributors

[![tabacitu](https://avatars.githubusercontent.com/u/1032474?v=4)](https://github.com/tabacitu "tabacitu (115 commits)")[![Ghitu](https://avatars.githubusercontent.com/u/7511010?v=4)](https://github.com/Ghitu "Ghitu (19 commits)")[![promatik](https://avatars.githubusercontent.com/u/1838187?v=4)](https://github.com/promatik "promatik (8 commits)")[![yusufkandemir](https://avatars.githubusercontent.com/u/6266078?v=4)](https://github.com/yusufkandemir "yusufkandemir (6 commits)")[![StyleCIBot](https://avatars.githubusercontent.com/u/11048387?v=4)](https://github.com/StyleCIBot "StyleCIBot (6 commits)")[![abdelrahmanahmed](https://avatars.githubusercontent.com/u/8146379?v=4)](https://github.com/abdelrahmanahmed "abdelrahmanahmed (5 commits)")[![pxpm](https://avatars.githubusercontent.com/u/7188159?v=4)](https://github.com/pxpm "pxpm (4 commits)")[![vonsogt](https://avatars.githubusercontent.com/u/35516476?v=4)](https://github.com/vonsogt "vonsogt (2 commits)")[![lucianobapo](https://avatars.githubusercontent.com/u/8369332?v=4)](https://github.com/lucianobapo "lucianobapo (2 commits)")[![dabenzel](https://avatars.githubusercontent.com/u/2480235?v=4)](https://github.com/dabenzel "dabenzel (1 commits)")[![kamioon](https://avatars.githubusercontent.com/u/3734100?v=4)](https://github.com/kamioon "kamioon (1 commits)")[![cenoura](https://avatars.githubusercontent.com/u/1128688?v=4)](https://github.com/cenoura "cenoura (1 commits)")[![selcukcukur](https://avatars.githubusercontent.com/u/5716652?v=4)](https://github.com/selcukcukur "selcukcukur (1 commits)")[![angusfretwell](https://avatars.githubusercontent.com/u/3889818?v=4)](https://github.com/angusfretwell "angusfretwell (1 commits)")[![AlinGhitu](https://avatars.githubusercontent.com/u/9121151?v=4)](https://github.com/AlinGhitu "AlinGhitu (1 commits)")[![TanNhatCMS](https://avatars.githubusercontent.com/u/113796420?v=4)](https://github.com/TanNhatCMS "TanNhatCMS (1 commits)")[![twmbx](https://avatars.githubusercontent.com/u/536306?v=4)](https://github.com/twmbx "twmbx (1 commits)")[![WayneBrummer](https://avatars.githubusercontent.com/u/4981767?v=4)](https://github.com/WayneBrummer "WayneBrummer (1 commits)")[![darc1n](https://avatars.githubusercontent.com/u/7261614?v=4)](https://github.com/darc1n "darc1n (1 commits)")[![alexiswbr](https://avatars.githubusercontent.com/u/15452514?v=4)](https://github.com/alexiswbr "alexiswbr (1 commits)")

---

Tags

laravellanguagetabacituadmin-panelbackpacklaravel backpacktranslationmanagerlang fileslang file manager

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/backpack-langfilemanager/health.svg)

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

###  Alternatives

[backpack/backupmanager

Admin interface for managing backups in Backpack, on Laravel 5.2+

340375.9k2](/packages/backpack-backupmanager)[backpack/pagemanager

Create admin panels for presentation websites on Laravel, using page templates and Backpack\\CRUD.

371522.6k6](/packages/backpack-pagemanager)[backpack/settings

Application settings interface for Laravel 5 using Backpack CRUD.

290870.9k10](/packages/backpack-settings)[izica/relations-widgets-for-backpack

Widgets for preview model relations in laravel backpack

2927.3k](/packages/izica-relations-widgets-for-backpack)[backpack/revise-operation

Backpack interface for venturecraft/revisionable

43279.9k1](/packages/backpack-revise-operation)[ziming/json-field-for-backpack

A Json Editor Field for Backpack

3597.3k](/packages/ziming-json-field-for-backpack)

PHPackages © 2026

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