Search
 
SCRIPT & CODE EXAMPLE
 

PHP

php artisan tinker encription cmd

>> php artisan tinker

$admin = new AppAdmin;
$admin->name= "admin";
$admin->email="admin@admin.com";
$admin->password= Hash::make('password');
$admin->save();

Hash::make('new_password');
=> "$2y$10$mxpQR9NLHLqTnC0D8I0dmeQcXgwdKIuD9roPYjl.YMvsXCVVoRuXG"
>>> bcrypt('new_password');
=> "$2y$10$mxpQR9NLHLqTnC0D8I0dmeQcXgwGGm1112rDxwVrUP9boDaMuKE8i"
Comment

PREVIOUS NEXT
Code Example
Php :: get date after 1 dayphp 
Php :: laravel eloquent multiple join with where conditions 
Php :: laravel except method 
Php :: how condition for multiple row by orwhere laravel 
Php :: random integer in php 
Php :: PHP MySQL Use The ORDER BY Clause 
Php :: laravel upload file to aws s3 
Php :: sass mix laravel 
Php :: checkbox options wordpress 
Php :: remove the last character from a string in php 
Php :: .htaccess Prevent access to php.ini 
Php :: file put contents php 
Php :: why we use .htaccess file in php 
Php :: import faker in laravel 
Php :: Unknown column type "double" requested. Any Doctrine type that you use has to be registered with DoctrineDBALTypesType::addType 
Php :: faker image laravel 8 
Php :: python to php 
Php :: laravel auth 
Php :: php artisan add row in table 
Php :: Show all laravel valet folders 
Php :: connect rabbitMQ 
Php :: How do I change the URL of Add to cart in WooCommerce 
Php :: associative array in php have same value join them 
Php :: get all users created in a month laravel 
Php :: remove behind comma php 
Php :: php pdo error 500 
Php :: php mysql prepared statements 
Php :: laravel access request in provider 
Php :: acf wordpress loop through and display blog posts order by date and type 
Php :: php execute a background process 
ADD CONTENT
Topic
Content
Source link
Name
2+5 =