public static function validation(?ValidationConfig
$config = null, bool
$getShared = true
) { if ($getShared) { return static::
getSharedInstance('validation',
$config);
} $config ??=
config(ValidationConfig::
class);
return new Validation($config, AppServices::
renderer());
} /**
* View cells are intended to let you insert HTML into view
* that has been generated by any callable in the system.
*
* @return Cell
*/
public static function viewcell(bool
$getShared = true
) { if ($getShared) {