You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xshop/database/factories/CommentFactory.php

80 lines
2.3 KiB
PHTML

5 months ago
<?php
namespace Database\Factories;
use App\Models\Attachment;
use App\Models\Clip;
use App\Models\Comment;
use App\Models\Customer;
use App\Models\Gallery;
use App\Models\Post;
use App\Models\Product;
use App\Models\User;
5 months ago
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Comment>
*/
class CommentFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
switch (rand(0, 3)) {
case 0:
case 1:
$c = Post::class;
$m = $c::inRandomOrder()->first()->id;
break;
case 2:
case 3:
$c = Product::class;
$m = $c::inRandomOrder()->first()->id;
break;
// case 4:
// $c = Gallery::class;
// $m = $c::inRandomOrder()->first()->id;
// break;
// case 5:
// $c = Clip::class;
// $m = $c::inRandomOrder()->first()->id;
// break;
// case 6:
// $c = Attachment::class;
// $m = $c::inRandomOrder()->first()->id;
// break;
}
$comment = [
5 months ago
//
'body' => $this->faker->realText(),
'commentable_id' => $m,
'commentable_type' => $c,
'ip'=> $this->faker->ipv4(),
'status' => rand(-1,1)
5 months ago
];
switch (rand(0,2)){
case 0:
$comment['email'] = $this->faker->email;
$comment['name'] = $this->faker->name;
break;
case 1:
$comment['commentator_type'] = Customer::class;
$comment['commentator_id'] = Customer::inRandomOrder()->first()->id;
break;
case 2:
$comment['commentator_type'] = User::class;
$comment['commentator_id'] = User::inRandomOrder()->first()->id;
break;
}
if (rand(0,3) == 1 && Comment::count() > 0){
$comment['parent_id'] = Comment::inRandomOrder()->first()->id;
}
return $comment;
5 months ago
}
}