1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/linkstack_ynh.git synced 2024-09-03 19:36:14 +02:00

adds missins quotes

This commit is contained in:
Tagadda 2023-05-06 16:10:13 +00:00
parent 7f27c1a46e
commit c85c478172

View file

@ -55,11 +55,11 @@ pushd $install_dir
use App\Models\User;
User::create([
'name' => $admin_fullname,
'email' => $admin_mail,
'name' => '$admin_fullname',
'email' => '$admin_mail',
'email_verified_at' => '0001-01-01 00:00:00',
'password' => Hash::make($password),
'littlelink_name' => $admin,
'password' => Hash::make('$password'),
'littlelink_name' => '$admin',
'littlelink_description' => 'admin page',
'block' => 'no',
]);