LaravelBook\Laravel4Powerpack\Str::plural PHP Method

plural() public method

Returns the plural form of "child" $plural = Str::plural('child', 10); Returns the singular form of "octocat" since count is one $plural = Str::plural('octocat', 1);
public plural ( string $value, integer $count = 2 ) : string
$value string
$count integer
return string
    public function plural($value, $count = 2)
    {
        return Pluralizer::plural($value, $count);
    }