middleware('auth'); } /** * Show the application dashboard. * * @return \Illuminate\Contracts\Support\Renderable */ public function index() { if(!Gate::allows('退货管理-查询')){ if(!Gate::allows('运输管理-查询')){ return view('home');} return redirect(url('waybill')); } return redirect(url('rejected/index/general')); } public function home() { return view('home'); } }