6
0
Fork 0

添加管理者补贴的换行

release
vine_liutk 2022-02-10 15:11:52 +08:00
parent 6ca7416221
commit 3f3898ea27
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ class DealerManagerSalesLogController extends AdminController
$text = '';
foreach ($query->groupBy('product_id')->get() as $log) {
if ($text !== '') {
$text .= "\n";
$text .= '<br>';
}
$text .= $log->product->name.'销量:'.$log->sales_volume;
}