• File: Localizable.php
  • Full Path: /home/masbinta/public_html/core/vendor/laravel/framework/src/Illuminate/Support/Traits/Localizable.php
  • File size: 629 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Illuminate\Support\Traits;

use Illuminate\Container\Container;

trait Localizable
{
    /**
     * Run the callback with the given locale.
     *
     * @param  string  $locale
     * @param  \Closure  $callback
     * @return mixed
     */
    public function withLocale($locale, $callback)
    {
        if (! $locale) {
            return $callback();
        }

        $app = Container::getInstance();

        $original = $app->getLocale();

        try {
            $app->setLocale($locale);

            return $callback();
        } finally {
            $app->setLocale($original);
        }
    }
}