芝麻web文件管理V1.00
编辑当前文件:/home/unicorntechnolog/public_html/mt5-ctrader/app/Http/Controllers/HomeController.php
middleware('auth'); } /** * Show the application dashboard. * * @return \Illuminate\Contracts\Support\Renderable */ public function index() { $user = Auth::user(); if(!empty($user)){ if($user->type == "1"){ return redirect('/dashboard'); } else{ return redirect('/login'); } } else{ return redirect('/login'); } } }