Added Production build.
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Factories;
|
||||
|
||||
use App\Models\Occupation;
|
||||
use App\Models\Post;
|
||||
use App\Models\Status;
|
||||
use App\Models\TimePeriod;
|
||||
use App\Models\User;
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
|
||||
class PostFactory extends Factory
|
||||
{
|
||||
/**
|
||||
* The name of the factory's corresponding model.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $model = Post::class;
|
||||
|
||||
/**
|
||||
* Define the model's default state.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function definition()
|
||||
{
|
||||
return [
|
||||
"title" => $this->faker->text(50),
|
||||
"text" => $this->faker->text,
|
||||
"post_time" => $this->faker->dateTime,
|
||||
"time" => $this->faker->numberBetween(1,12),
|
||||
"time_period_id" => TimePeriod::all()->random(1)[0]["id"],
|
||||
"occupation_id" => Occupation::all()->random(1)[0]["id"],
|
||||
"status_id" => Status::all()->random(1)[0]["id"],
|
||||
"user_id" => User::all()->random(1)[0]["id"]
|
||||
];
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user