lock() public method

Lock the selected rows in the table.
public lock ( boolean $value = true )
$value boolean
Example #1
0
 /**
  * Lock the selected rows in the table.
  *
  * @param bool $value
  * @return $this 
  * @static 
  */
 public static function lock($value = true)
 {
     return \Illuminate\Database\Query\Builder::lock($value);
 }