group(function () use ($router){ // vehicle路由 $router->resource('vehicle', '\catchAdmin\yunying\controller\Vehicle'); // 导出车辆 $router->post('export_vehicle', '\catchAdmin\yunying\controller\Vehicle@export_vehicle'); // vehicle_photo路由 $router->resource('vehicle_photo', '\catchAdmin\yunying\controller\VehiclePhoto'); // stolen_vehicle路由 $router->resource('stolen_vehicle', '\catchAdmin\yunying\controller\StolenVehicle'); // vehicle_brand路由 $router->resource('vehicle_brand', '\catchAdmin\yunying\controller\VehicleBrand'); // vehicle_color路由 $router->resource('vehicle_color', '\catchAdmin\yunying\controller\VehicleColor'); })->middleware('auth');