|
<?php
|
|
|
|
namespace App\ModelFilters;
|
|
|
|
use EloquentFilter\ModelFilter;
|
|
|
|
class AgriculturalBaseFilter extends ModelFilter
|
|
{
|
|
public function type($type)
|
|
{
|
|
return $this->where('type', $type);
|
|
}
|
|
|
|
public function parentId($parentId)
|
|
{
|
|
return $this->where('parent_id', $parentId);
|
|
}
|
|
}
|