call(AssetSeeder::class); } if (! Location::count()) { $this->call(LocationSeeder::class); } $admin = User::where('permissions->superuser', '1')->first() ?? User::factory()->firstAdmin()->create(); Actionlog::factory() ->count(300) ->assetCheckoutToUser() ->create(['user_id' => $admin->id]); Actionlog::factory() ->count(100) ->assetCheckoutToLocation() ->create(['user_id' => $admin->id]); Actionlog::factory() ->count(20) ->licenseCheckoutToUser() ->create(['user_id' => $admin->id]); } }