lcly-data-admin/app/ModelFilters/RiceShrimpFlowFilter.php

19 lines
309 B
PHP

<?php
namespace App\ModelFilters;
use EloquentFilter\ModelFilter;
class RiceShrimpFlowFilter extends ModelFilter
{
public function year($year)
{
return $this->where('year', $year);
}
public function quarter($quarter)
{
return $this->where('quarter', $quarter);
}
}