PHPackages                             sudippalash/lang-maker - 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. sudippalash/lang-maker

ActiveLibrary

sudippalash/lang-maker
======================

Laravel package for Language Make and Edit

2.0.8(1y ago)245MITBladePHP ^7.3|^8.0

Since Jul 23Pushed 1y ago1 watchersCompare

[ Source](https://github.com/sudippalash/lang-maker)[ Packagist](https://packagist.org/packages/sudippalash/lang-maker)[ RSS](/packages/sudippalash-lang-maker/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (1)Versions (14)Used By (0)

Language Maker
--------------

[](#language-maker)

[![alt text](https://github.com/sudippalash/lang-maker/raw/master/img.jpg?raw=true)](https://github.com/sudippalash/lang-maker/blob/master/img.jpg?raw=true)

[![Latest Version on Packagist](https://camo.githubusercontent.com/ab970b41aead4e88c1e3c1895b661899619ee6ffd933eee66c462e582be05121/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f737564697070616c6173682f6c616e672d6d616b65723f7374796c653d666c61742d737175617265)](https://packagist.org/packages/sudippalash/lang-maker)[![Total Downloads](https://camo.githubusercontent.com/e77864a713a37441a6376b9c8031b1351b485cef50ac93bf3121ec46de5d6267/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f737564697070616c6173682f6c616e672d6d616b65723f7374796c653d666c61742d737175617265)](https://packagist.org/packages/sudippalash/lang-maker)

`lang-maker` is a simple language handling package of `Laravel` that provides to create and modify your project's lang folder.

Install
-------

[](#install)

Via Composer

```
composer require sudippalash/lang-maker
```

You can publish the config file with:

```
php artisan vendor:publish --provider="Sudip\LangMaker\Providers\AppServiceProvider" --tag=config
```

This is the contents of the published config file `config/lang-maker.php`:

```
return [

    /*
    |--------------------------------------------------------------------------
    | Lang Maker
    |--------------------------------------------------------------------------
    | Lang Maker can be disabled, so it's no longer accessible via browser.
    |
    */

    'enabled' => env('LANG_MAKER_ENABLED', true),

    /*
    |--------------------------------------------------------------------------
    | Extends Layout Name
    |--------------------------------------------------------------------------
    |
    | Your main layout file path name. Example: layouts.app
    |
    */

    'layout_name' => 'layouts.app',

    /*
    |--------------------------------------------------------------------------
    | Section Name
    |--------------------------------------------------------------------------
    |
    | Your section name which in yield in main layout file. Example: content
    |
    */

    'section_name' => 'content',

    /*
    |--------------------------------------------------------------------------
    | Route Name, Prefix & Middleware
    |--------------------------------------------------------------------------
    |
    | Provide a route name for language route. Example: user.languages
    | Provide a prefix name for language url. Example: user/languages
    | If language route use any middleware then provide it or leave empty array. Example: ['auth']
    */

    'route_name' => 'user.languages',
    'route_prefix' => 'user/languages',
    'middleware' => [],

    /*
    |--------------------------------------------------------------------------
    | Ignore Language File
    |--------------------------------------------------------------------------
    |
    | specify the file names (without extension) in array which you want to ignore to modify
    | or leave it blank array
    */

    'ignore_lang_file' => ['validation'],

    /*
    |--------------------------------------------------------------------------
    | Bootstrap version
    |--------------------------------------------------------------------------
    |
    | Which bootstrap you use in your application. Example: 3 or 4 or 5
    |
    */

    'bootstrap_v' => 4,

    /*
    |--------------------------------------------------------------------------
    | Flash Messages
    |--------------------------------------------------------------------------
    |
    | After Save/Update flash message session key name
    |
    */

    'flash_success' => 'success',
    'flash_error' => 'error',

    /*
    |--------------------------------------------------------------------------
    | CSS
    |--------------------------------------------------------------------------
    |
    | Add your css class in this property if you want to change design.
    */

    'css' => [
        'container' => null,
        'card' => null,
        'input' => null,
        'btn' => null,
        'link' => null,
    ],
];
```

Optionally, you can publish the lang using

```
php artisan vendor:publish --provider="Sudip\LangMaker\Providers\AppServiceProvider" --tag=lang
```

Usage
-----

[](#usage)

You should copy the below line and paste in your project menu section

```
{{ trans('lang-maker::sp_lang_maker.languages') }}
```

###  Health Score

35

—

LowBetter than 79% of packages

Maintenance49

Moderate activity, may be stable

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity60

Established project with proven stability

 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 ~85 days

Recently: every ~12 days

Total

13

Last Release

369d ago

Major Versions

1.0.3 → 2.0.02022-08-09

PHP version history (2 changes)2.0.1PHP ^7.3|^8.4

2.0.2PHP ^7.3|^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/5e4dad3b25d885d7ee33085d1a82851871161020923a26ac2b2276e5950c201a?d=identicon)[sudippalash](/maintainers/sudippalash)

---

Top Contributors

[![sudippalash](https://avatars.githubusercontent.com/u/16589727?v=4)](https://github.com/sudippalash "sudippalash (24 commits)")

---

Tags

laravelSudipLaravel Language Make and EditLanguage Make and Edit

### Embed Badge

![Health badge](/badges/sudippalash-lang-maker/health.svg)

```
[![Health](https://phpackages.com/badges/sudippalash-lang-maker/health.svg)](https://phpackages.com/packages/sudippalash-lang-maker)
```

###  Alternatives

[anourvalar/eloquent-serialize

Laravel Query Builder (Eloquent) serialization

11320.2M21](/packages/anourvalar-eloquent-serialize)[api-platform/laravel

API Platform support for Laravel

59126.4k6](/packages/api-platform-laravel)

PHPackages © 2026

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