refact App\User to App\Models\User

This commit is contained in:
2020-09-09 12:42:20 +02:00
parent 539637af40
commit 69f5dd9323
25 changed files with 68 additions and 68 deletions

View File

@@ -7,7 +7,7 @@ use Faker\Generator as Faker;
$factory->define(Bookmark::class, function (Faker $faker) {
return [
'user_id' => factory(\App\User::class),
'user_id' => factory(\App\Models\User::class),
'name' => $faker->words(3, [false]),
'url' => $faker->url,
'favicon' => $faker->imageUrl(),