trait Illuminate / Support / Traits / Conditionable
You are viewing an older version of the documentation. For the latest, please visit master documentation.

Conditionable

Methods

public

when ( $value , $callback , $default ) : $this|mixed

Apply the callback if the given "value" is truthy.

Parameters

  • $value mixed
  • $callback callable
  • $default callable|null
public

unless ( $value , $callback , $default ) : $this|mixed

Apply the callback if the given "value" is falsy.

Parameters

  • $value mixed
  • $callback callable
  • $default callable|null