Eloquent::offset PHP Method

offset() public static method

Set the "offset" value of the query.
public static offset ( integer $value )
$value integer
        public static function offset($value)
        {
            return \Illuminate\Database\Query\Builder::offset($value);
        }
Eloquent