mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
add blueprint files to git
This commit is contained in:
33
database/factories/LecturerFactory.php
Normal file
33
database/factories/LecturerFactory.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Factories;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
use Illuminate\Support\Str;
|
||||
use App\Models\Lecturer;
|
||||
use App\Models\Team;
|
||||
|
||||
class LecturerFactory extends Factory
|
||||
{
|
||||
/**
|
||||
* The name of the factory's corresponding model.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $model = Lecturer::class;
|
||||
|
||||
/**
|
||||
* Define the model's default state.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function definition(): array
|
||||
{
|
||||
return [
|
||||
'team_id' => Team::factory(),
|
||||
'name' => $this->faker->name,
|
||||
'slug' => $this->faker->slug,
|
||||
'active' => $this->faker->boolean,
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user