2018-11-05 09:26:30 +08:00

23 lines
377 B
PHP

<?php
namespace Illuminate\Validation\Rules;
class Exists
{
use DatabaseRule;
/**
* Convert the rule to a validation string.
*
* @return string
*/
public function __toString()
{
return rtrim(sprintf('exists:%s,%s,%s',
$this->table,
$this->column,
$this->formatWheres()
), ',');
}
}