You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							48 lines
						
					
					
						
							1.2 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							48 lines
						
					
					
						
							1.2 KiB
						
					
					
				
								<?php
							 | 
						|
								
							 | 
						|
								namespace App\Http\Controllers\Auth;
							 | 
						|
								
							 | 
						|
								use App\Http\Controllers\Controller;
							 | 
						|
								use Illuminate\Foundation\Auth\AuthenticatesUsers;
							 | 
						|
								use Illuminate\Support\Facades\Auth;
							 | 
						|
								class LoginController extends Controller
							 | 
						|
								{
							 | 
						|
								    /*
							 | 
						|
								    |--------------------------------------------------------------------------
							 | 
						|
								    | Login Controller
							 | 
						|
								    |--------------------------------------------------------------------------
							 | 
						|
								    |
							 | 
						|
								    | This controller handles authenticating users for the application and
							 | 
						|
								    | redirecting them to your home screen. The controller uses a trait
							 | 
						|
								    | to conveniently provide its functionality to your applications.
							 | 
						|
								    |
							 | 
						|
								    */
							 | 
						|
								
							 | 
						|
								    use AuthenticatesUsers;
							 | 
						|
								
							 | 
						|
								    /**
							 | 
						|
								     * Where to redirect users after login.
							 | 
						|
								     *
							 | 
						|
								     * @var string
							 | 
						|
								     */
							 | 
						|
								    protected $redirectTo = '/home';
							 | 
						|
								
							 | 
						|
								    public function redirectTo(){
							 | 
						|
								        if(Auth::user()->puesto_id == 1){
							 | 
						|
								            return '/home';
							 | 
						|
								        }else{
							 | 
						|
								            return '/mesero';
							 | 
						|
								        }
							 | 
						|
								    }
							 | 
						|
								
							 | 
						|
								    /**
							 | 
						|
								     * Create a new controller instance.
							 | 
						|
								     *
							 | 
						|
								     * @return void
							 | 
						|
								     */
							 | 
						|
								    public function __construct()
							 | 
						|
								    {
							 | 
						|
								        $this->middleware('guest')->except('logout');
							 | 
						|
								        $this->middleware('auth')->only('logout');
							 | 
						|
								    }
							 | 
						|
								}
							 | 
						|
								
							 |