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.
23 lines
400 B
PHTML
23 lines
400 B
PHTML
4 weeks ago
|
<?php
|
||
|
|
||
|
namespace Database\Seeders;
|
||
|
|
||
|
use App\Models\Order;
|
||
|
use App\Models\Quote;
|
||
|
use Illuminate\Database\Seeder;
|
||
|
|
||
|
class QuoteSeeder extends Seeder
|
||
|
{
|
||
|
/**
|
||
|
* Run the database seeds.
|
||
|
*/
|
||
|
public function run(): void
|
||
|
{
|
||
|
foreach (Order::all() as $order) {
|
||
|
if (rand(0, 3) >= 1) {
|
||
|
Quote::factory()->for($order)->create();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|