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/InvoiceFactory.php

35 lines
934 B
PHTML

5 months ago
<?php
namespace Database\Factories;
use App\Models\Customer;
use App\Models\Invoice;
5 months ago
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');
5 months ago
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,
5 months ago
];
}
}