mirror of
https://github.com/exane/not-gwent-online
synced 2025-07-27 20:33:28 +00:00
add website structure
This commit is contained in:
.gitignore
site
client
public
server
.env.exampleartisan
app
Console
Events
Exceptions
Http
Jobs
Listeners
Providers
User.phpbootstrap
composer.jsoncomposer.lockconfig
app.phpauth.phpbroadcasting.phpcache.phpcompile.phpdatabase.phpfilesystems.phpmail.phpqueue.phpservices.phpsession.phpview.php
database
phpspec.ymlphpunit.xmlserver.phpstorage
tests
21
site/server/database/factories/ModelFactory.php
Executable file
21
site/server/database/factories/ModelFactory.php
Executable file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Model Factories
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may define all of your model factories. Model factories give
|
||||
| you a convenient way to create models for testing and seeding your
|
||||
| database. Just tell the factory how a default model should look.
|
||||
|
|
||||
*/
|
||||
|
||||
$factory->define(Gwent\User::class, function ($faker) {
|
||||
return [
|
||||
'name' => $faker->name,
|
||||
'email' => $faker->email,
|
||||
'password' => str_random(10),
|
||||
'remember_token' => str_random(10),
|
||||
];
|
||||
});
|
Reference in New Issue
Block a user