hasResults()) { return $this->recordIterator($query, $parser, $skip + $limit); } return 0; } public function createRedirect(string $from, string $to, string $title = "Redirecting", string $message = "Redirecting Soon..."): void { $html = view("lucent::redirect", [ "to" => $to, "title" => $title, "message" => $message, ])->render(); $this->save($from, $html); } }