60 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Controllers\Install;
 | |
| 
 | |
| use Illuminate\Http\Request;
 | |
| use Illuminate\Routing\Controller;
 | |
| 
 | |
| class Language extends Controller
 | |
| {
 | |
|     /**
 | |
|      * Show the form for creating a new resource.
 | |
|      *
 | |
|      * @return Response
 | |
|      */
 | |
|     public function create()
 | |
|     {
 | |
|         $locale = config('app.locale');
 | |
| 
 | |
|         $lang_allowed = language()->allowed();
 | |
| 
 | |
|         if (! $locale || ! array_key_exists($locale, $lang_allowed)) {
 | |
|             $locale = 'en-GB';
 | |
|         }
 | |
| 
 | |
|         return view('install.language.create', compact('locale', 'lang_allowed'));
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Store a newly created resource in storage.
 | |
|      *
 | |
|      * @param  Request  $request
 | |
|      *
 | |
|      * @return Response
 | |
|      */
 | |
|     public function store(Request $request)
 | |
|     {
 | |
|         // Set locale
 | |
|         session(['locale' => $request->get('lang')]);
 | |
|         app()->setLocale($request->get('lang'));
 | |
| 
 | |
|         $response['redirect'] = route('install.database');
 | |
| 
 | |
|         return response()->json($response);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Show the form for creating a new resource.
 | |
|      *
 | |
|      * @return Response
 | |
|      */
 | |
|     public function getLanguages()
 | |
|     {
 | |
|         $response = [
 | |
|             'languages' => language()->allowed(),
 | |
|         ];
 | |
| 
 | |
|         return response()->json($response);
 | |
|     }
 | |
| }
 |