🎨 Champion + Skin databases

This commit is contained in:
Rico van Zelst
2023-10-26 20:46:09 +02:00
parent 55447937a6
commit 1414391197
17 changed files with 686 additions and 6 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\ChampionSkin>
*/
class ChampionSkinFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
return [
//
];
}
}