26 lines
609 B
PHP
26 lines
609 B
PHP
<?php
|
|
/**
|
|
* CurrencyController.php
|
|
*
|
|
* @copyright 2022 opencart.cn - All Rights Reserved
|
|
* @link http://www.guangdawangluo.com
|
|
* @author TL <mengwb@opencart.cn>
|
|
* @created 2022-07-28 16:21:14
|
|
* @modified 2022-07-28 16:21:14
|
|
*/
|
|
|
|
namespace Beike\Shop\Http\Controllers;
|
|
|
|
use Beike\Repositories\CurrencyRepo;
|
|
|
|
class CurrencyController extends Controller
|
|
{
|
|
public function index($lang)
|
|
{
|
|
if (array_key_exists($lang, CurrencyRepo::all()->where('status', true)->pluck('code'))) {
|
|
Session::put('currency', $lang);
|
|
}
|
|
return Redirect::back();
|
|
}
|
|
}
|