laravel - Location of Class Hash -
just wondering class hash stored in laravel application, use in userseeder:
$users = [ [ "username" => "dummy", "password" => hash::make("testlogin"), "email" => "testaddress@test.com" ],
i want know little bit laravel structure , on. found bcrypthasher class in vendor/laravel/framework/src/illuminate thats not class use in userseeder. can give me hint?
also found hash.php in laravel namespace overview. don't know find file in directory structure.
this entry point:
illuminate\support\facades\hash.php
this goes after:
illuminate\hashing\hashserviceprovider.php
which instantiates (this methods make()
, check()
are):
illuminate\hashing\bcrypthasher.php
Comments
Post a Comment