Overtrue\Validation\MessageBag::first PHP Метод

first() публичный Метод

Get the first message from the bag for a given key.
public first ( string $key = null, string $format = null ) : string
$key string
$format string
Результат string
    public function first($key = null, $format = null)
    {
        $messages = is_null($key) ? $this->all($format) : $this->get($key, $format);
        return count($messages) > 0 ? $messages[0] : '';
    }