|
|
@@ -30,7 +30,8 @@ class CustomerBaseController extends Controller
|
|
|
}]);
|
|
|
$owners = app("OwnerService")->getIntersectPermitting(['id','name','customer_id']);
|
|
|
$tags = CustomerTag::query()->orderByDesc('count')->get(["id","name"]);
|
|
|
- return response()->view('customer.customer.index',compact("customers","owners","tags"));
|
|
|
+ $params = $request->input();
|
|
|
+ return response()->view('customer.customer.index',compact("customers","owners","tags","params"));
|
|
|
}
|
|
|
|
|
|
/**
|