Created regular tests

This commit is contained in:
Gregorio Chiko Putra
2018-07-21 10:00:34 +07:00
parent 2871865e82
commit 70fe3a814c
32 changed files with 891 additions and 4 deletions

View File

@@ -0,0 +1,18 @@
<?php
use Illuminate\Database\Seeder;
class UsersTableSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
factory(App\User::class)->create([
'email' => 'admin@laraland.test'
]);
}
}