1
0
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:
devfake
2015-06-19 18:50:05 +02:00
parent 30a1005d14
commit fc6f507229
61 changed files with 5069 additions and 1 deletions

@@ -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),
];
});