ok
Direktori : /home2/selectio/www/3-idiots/vendor/laravel/framework/src/Illuminate/Validation/Rules/ |
Current File : //home2/selectio/www/3-idiots/vendor/laravel/framework/src/Illuminate/Validation/Rules/Exists.php |
<?php namespace Illuminate\Validation\Rules; use Illuminate\Support\Traits\Conditionable; class Exists { use Conditionable, DatabaseRule; /** * Ignore soft deleted models during the existence check. * * @param string $deletedAtColumn * @return $this */ public function withoutTrashed($deletedAtColumn = 'deleted_at') { $this->whereNull($deletedAtColumn); return $this; } /** * 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() ), ','); } }