更改服务定价

时间:2019-01-03 22:56:24

标签: php laravel

在我的Laravel脚本中,管理员必须首先记录几种类别的服务 然后,他可以在用户x的UserPrices部分中更改价格。 在用户面板的serviceslist页面上,他看到基于“ UsersPrices”的价格。 我要有所作为,这是因为用户面板中的服务列表显示了主要价格,而不是基于“ UsersPrices”的价格 我怎样才能做到这一点? 这是serviceslist控制器代码:

public function serviceList(){
     $categories = ServicePrice::where('user_id', Auth::id())->distinct()->get(['category_id']);
        return view('user.serviceList', compact('categories'));
    }

0 个答案:

没有答案