mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
book cases added
This commit is contained in:
34
database/factories/OrangePillFactory.php
Normal file
34
database/factories/OrangePillFactory.php
Normal file
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Factories;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
use Illuminate\Support\Str;
|
||||
use App\Models\BookCase;
|
||||
use App\Models\OrangePill;
|
||||
use App\Models\User;
|
||||
|
||||
class OrangePillFactory extends Factory
|
||||
{
|
||||
/**
|
||||
* The name of the factory's corresponding model.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $model = OrangePill::class;
|
||||
|
||||
/**
|
||||
* Define the model's default state.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function definition(): array
|
||||
{
|
||||
return [
|
||||
'user_id' => User::factory(),
|
||||
'book_case_id' => BookCase::factory(),
|
||||
'date' => $this->faker->dateTime(),
|
||||
'amount' => $this->faker->randomNumber(),
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user