Using Bcrypt in Laravel

Code
<?php

use Illuminate\Hashing\BcryptHasher;

$hasher = new BcryptHasher();

$str 'Budgie';
// uses php 5.5 password_hash()
$hash $hasher->make($str);
// uses php 5.5 password_verify()
$isValid $hasher->check($str$hash);

dump($str$hash$isValid);
Result
^ "Budgie"

^ "$2y$10$aI1WjzwVSBjrcVcOWoephuSjUme1eWDHNiMAoFNj3Oh4Hx61WHWl."

^ true
Used Versions
PHP 8.2, Laminas MVC 3.2, Symfony 5.2, Laravel 8.28, PHPUnit 9.5, Doctrine ORM 2.8