Last active
November 25, 2024 15:06
-
-
Save vielhuber/0ae74eb1847eb7b8d52ac6128940bfba to your computer and use it in GitHub Desktop.
factories and seeders #laravel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ... */ | |
use Illuminate\Database\Eloquent\Factories\HasFactory; | |
/* ... */ | |
class Test extends Model | |
{ | |
/* ... */ | |
use HasFactory; | |
/* ... */ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Database\Factories; | |
use App\Models\X; | |
use App\Models\Y; | |
use App\Models\Z; | |
use Illuminate\Database\Eloquent\Factories\Factory; | |
class TestFactory extends Factory | |
{ | |
public function definition(): array | |
{ | |
return [ | |
'foo' => fake()->unique()->regexify('[0-9][0-9][0-9][0-9][0-9][\-][0-9][0-9]'), | |
'bar' => fake()->optional()->realText(200), | |
'x_id' => X::factory(), // this is how to handle relationships | |
'y_id' => Y::factory(), | |
'z_id' => Z::factory(), | |
]; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Database\Seeders; | |
use App\Models\Test; | |
use Illuminate\Database\Seeder; | |
class TestSeeder extends Seeder | |
{ | |
public function run(): void | |
{ | |
// single | |
$model = House::factory()->create([ | |
'foo' => 'bar', | |
'bar' => 'baz' | |
]); | |
// multiple | |
House::factory() | |
->count(10) | |
->create([ | |
'foo' => 'bar', | |
'bar' => 'baz' | |
]); | |
// different values | |
House::factory() | |
->count(3) | |
->state(new Sequence( | |
['foo' => 'value1'], | |
['foo' => 'value2'], | |
['foo' => 'value3'], | |
)) | |
->create(); | |
// 1:n | |
$model = House::factory()->has( | |
Window::factory() | |
->has(/*...*/) // nested | |
->for(/*...*/) // nested | |
->state([ | |
'foo' => 'bar', | |
'bar' => 'baz' | |
]), | |
'windows' | |
) | |
->create([ | |
'foo' => 'bar', | |
'bar' => 'baz' | |
]); | |
// n:1 | |
$model = House::factory()->for( | |
Window::factory() | |
->has(/*...*/) // nested | |
->for(/*...*/) // nested | |
->state([ | |
'foo' => 'bar', | |
'bar' => 'baz' | |
]), | |
'window' | |
) | |
->create([ | |
'foo' => 'bar', | |
'bar' => 'baz' | |
]); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment