2018-07-24 11:11:32 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Webkul\Core;
|
|
|
|
|
|
|
|
|
|
use Webkul\Core\Models\Locale as LocaleModel;
|
|
|
|
|
use Webkul\Core\Models\Currency as CurrencyModel;
|
|
|
|
|
|
|
|
|
|
class Core
|
|
|
|
|
{
|
2018-08-09 04:35:13 +00:00
|
|
|
public function getAllLocales() {
|
2018-07-24 11:11:32 +00:00
|
|
|
return LocaleModel::all();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function allCurrencies() {
|
|
|
|
|
return CurrencyModel::all();
|
|
|
|
|
}
|
|
|
|
|
}
|