Upgrading laravel from v7 to v8

This commit is contained in:
Peter Papp
2021-02-25 16:47:32 +01:00
parent 92e02d8b57
commit 18518106ca
12 changed files with 2126 additions and 2296 deletions

View File

@@ -1,17 +0,0 @@
<?php
/** @var \Illuminate\Database\Eloquent\Factory $factory */
use App\FileManagerFolder;
use Faker\Generator as Faker;
$factory->define(FileManagerFolder::class, function (Faker $faker) {
return [
'id' => $faker->randomDigit,
'unique_id' => $faker->randomDigit,
'user_id' => 1,
'parent_id' => 0,
'name' => $faker->sentence,
'type' => 'folder',
];
});