コード例 #1
0
 public function edit_keywords()
 {
     $success = Input::get('success');
     /* $keywords = Keywords::all(); */
     $icons = Icons::all();
     $UIkeywords = array();
     $UIkeywords['keyProvider'] = Lang::get('customize.Provider');
     $UIkeywords['keyUser'] = Lang::get('customize.User');
     $UIkeywords['keyTaxi'] = Lang::get('customize.Taxi');
     $UIkeywords['keyTrip'] = Lang::get('customize.Trip');
     $UIkeywords['keyWalk'] = Lang::get('customize.Walk');
     $UIkeywords['keyRequest'] = Lang::get('customize.Request');
     $UIkeywords['keyDashboard'] = Lang::get('customize.Dashboard');
     $UIkeywords['keyMap_View'] = Lang::get('customize.map_view');
     $UIkeywords['keyReviews'] = Lang::get('customize.Reviews');
     $UIkeywords['keyInformation'] = Lang::get('customize.Information');
     $UIkeywords['keyTypes'] = Lang::get('customize.Types');
     $UIkeywords['keyDocuments'] = Lang::get('customize.Documents');
     $UIkeywords['keyPromo_Codes'] = Lang::get('customize.promo_codes');
     $UIkeywords['keyCustomize'] = Lang::get('customize.Customize');
     $UIkeywords['keyPayment_Details'] = Lang::get('customize.payment_details');
     $UIkeywords['keySettings'] = Lang::get('customize.Settings');
     $UIkeywords['keyAdmin'] = Lang::get('customize.Admin');
     $UIkeywords['keyAdmin_Control'] = Lang::get('customize.admin_control');
     $UIkeywords['keyLog_Out'] = Lang::get('customize.log_out');
     $title = ucwords(trans('customize.Customize'));
     /* 'Customize' */
     return View::make('keywords')->with('title', $title)->with('page', 'keywords')->with('icons', $icons)->with('Uikeywords', $UIkeywords)->with('success', $success);
 }