arispati / app-locale by arispati

Localization for Laravel and Lumen Framework
16,208
1
2
Package Data
Maintainer Username: arispati
Maintainer Contact: masarispati@gmail.com (Aris)
Package Create Date: 2021-08-06
Package Last Update: 2021-08-06
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-19 15:14:56
Package Statistics
Total Downloads: 16,208
Monthly Downloads: 325
Daily Downloads: 25
Total Stars: 1
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

App Locale

Localization for Laravel and Lumen Framework

Description

This package will set the locale of the application by the request that contains the App-Locale attribute in the header

How to Install

  • Install with composer
composer require arispati/app-locale

Laravel

  • Register the middleware
// app/Http/Kernel.php
protected $middleware = [
    // ...
    \Arispati\AppLocale\Middleware\AppLocale::class
];

Lumen

  • Register the middleware
// bootstrap/app.php
$app->middleware([
    \Arispati\AppLocale\Middleware\AppLocale::class
]);
  • if you want to use Facade
// bootstrap/app.php

// Enabled Facade
$app->withFacades(true, [
    '\Arispati\AppLocale\Facades\AppLocale' => 'AppLocale'
]);

// Register service provider
$app->register(\Arispati\AppLocale\ServiceProvider::class);

Available Method

  • Set app locale
AppLocale::setLocale('id'); // set app locale to 'id' (Bahasa Indonesia)
  • Get app locale
AppLocale::getLocale();