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

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -