PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Validation
/
Rules
<?php namespace Illuminate\Validation\Rules; use Illuminate\Support\Traits\Conditionable; class Exists { use Conditionable, 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() ), ','); } }
[-] File.php
[edit]
[+]
..
[-] ImageFile.php
[edit]
[-] Exists.php
[edit]
[-] Enum.php
[edit]
[-] In.php
[edit]
[-] Dimensions.php
[edit]
[-] DatabaseRule.php
[edit]
[-] Unique.php
[edit]
[-] ExcludeIf.php
[edit]
[-] NotIn.php
[edit]
[-] RequiredIf.php
[edit]
[-] Password.php
[edit]
[-] ProhibitedIf.php
[edit]