1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-06 08:54:06 +00:00

Merge branch 'master' into shift-64622

This commit is contained in:
Abrar Ahmad 2022-07-21 15:19:00 +05:00
commit ea0b44522d
42 changed files with 277 additions and 75 deletions

View file

@ -19,7 +19,7 @@ class ExampleSeeder extends Seeder
{
DB::table('users')->insert([
'name' => Str::random(10),
'email' => Str::random(10).'@gmail.com',
'email' => Str::random(10) . '@gmail.com',
'password' => bcrypt('password'),
]);
}