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