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.
		
		
		
		
		
			
		
			
				
					
					
						
							22 lines
						
					
					
						
							669 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							22 lines
						
					
					
						
							669 B
						
					
					
				
								<?php
							 | 
						|
								
							 | 
						|
								use Illuminate\Routing\Router;
							 | 
						|
								use Illuminate\Support\Facades\Route;
							 | 
						|
								use Dcat\Admin\Admin;
							 | 
						|
								
							 | 
						|
								Admin::routes();
							 | 
						|
								
							 | 
						|
								Route::group([
							 | 
						|
								    'prefix'     => config('admin.route.prefix'),
							 | 
						|
								    'namespace'  => config('admin.route.namespace'),
							 | 
						|
								    'middleware' => config('admin.route.middleware'),
							 | 
						|
								], function (Router $router) {
							 | 
						|
								
							 | 
						|
								    $router->get('/', 'HomeController@index');
							 | 
						|
									$router->post('auth/login', 'AuthController@postLogin');
							 | 
						|
								
							 | 
						|
									$router->resource('order/list', 'OrderController');
							 | 
						|
									$router->resource('demand', 'DemandController');
							 | 
						|
									$router->resource('demand_bidding', 'DemandBiddingController');
							 | 
						|
									$router->resource('my_demand_product', 'MyDemandProductController');
							 | 
						|
								});
							 |