mirror of https://github.com/4xmen/xshop.git
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.
35 lines
934 B
PHP
35 lines
934 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\Customer;
|
|
use App\Models\Invoice;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
/**
|
|
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Invoice>
|
|
*/
|
|
class InvoiceFactory extends Factory
|
|
{
|
|
/**
|
|
* Define the model's default state.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function definition(): array
|
|
{
|
|
$date = $this->faker->dateTimeBetween('-1 months', 'now');
|
|
return [
|
|
'customer_id' => Customer::inRandomOrder()->first()->id,
|
|
'status' => Invoice::$invoiceStatus[rand(0,count(Invoice::$invoiceStatus)-1)],
|
|
'desc' => $this->faker->realText(),
|
|
'address_id' => null,
|
|
'transport_id' => null,
|
|
'transport_price' => 0,
|
|
'created_at' => $date,
|
|
'updated_at' => $date,
|
|
'total_price' => 0,
|
|
];
|
|
}
|
|
}
|