mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-12-01 22:50:44 +00:00
21 lines
354 B
PHP
21 lines
354 B
PHP
<?php
|
|
|
|
namespace App\Filters;
|
|
|
|
class GoodsFilter extends Filters
|
|
{
|
|
protected function typeId($value)
|
|
{
|
|
if($value){
|
|
return $this->builder->where('type_id', $value);
|
|
}
|
|
}
|
|
|
|
protected function brandId($value)
|
|
{
|
|
if($value){
|
|
return $this->builder->where('brand_id', $value);
|
|
}
|
|
}
|
|
}
|