App\Http\Controllers\AccountController::showLocalization PHP 메소드

showLocalization() 개인적인 메소드

private showLocalization ( ) : Illuminate\Contracts\View\View
리턴 Illuminate\Contracts\View\View
    private function showLocalization()
    {
        $data = ['account' => Account::with('users')->findOrFail(Auth::user()->account_id), 'timezones' => Cache::get('timezones'), 'dateFormats' => Cache::get('dateFormats'), 'datetimeFormats' => Cache::get('datetimeFormats'), 'currencies' => Cache::get('currencies'), 'title' => trans('texts.localization'), 'weekdays' => Utils::getTranslatedWeekdayNames(), 'months' => Utils::getMonthOptions()];
        return View::make('accounts.localization', $data);
    }