📋 Commit iniziale con: - ✅ Documentazione unificata in docs/ - ✅ Codice Laravel in netgescon-laravel/ - ✅ Script automazione in scripts/ - ✅ Configurazione sync rsync - ✅ Struttura organizzata e pulita 🔄 Versione: 2025.07.19-1644 🎯 Sistema pronto per Git distribuito
26 lines
476 B
PHP
26 lines
476 B
PHP
<?php
|
|
|
|
namespace Illuminate\Validation\Rules;
|
|
|
|
use Illuminate\Support\Traits\Conditionable;
|
|
use Stringable;
|
|
|
|
class Exists implements Stringable
|
|
{
|
|
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()
|
|
), ',');
|
|
}
|
|
}
|