Files
InvoiceShelf/database/factories/ExpenseFactory.php
Christos Yiakoumettis 3e96297699 Add expense number at Expenses (#406)
* add expense number at expenses

* Re-order expense fields

* Rename expense_number migration

* Add expense_number to tests

---------

Co-authored-by: Darko Gjorgjijoski <dg@darkog.com>
2025-09-02 03:20:27 +02:00

41 lines
1.2 KiB
PHP

<?php
namespace Database\Factories;
use App\Models\Currency;
use App\Models\Customer;
use App\Models\Expense;
use App\Models\ExpenseCategory;
use App\Models\User;
use Illuminate\Database\Eloquent\Factories\Factory;
class ExpenseFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Expense::class;
/**
* Define the model's default state.
*/
public function definition(): array
{
return [
'expense_date' => $this->faker->date('Y-m-d', 'now'),
'expense_category_id' => ExpenseCategory::factory(),
'expense_number' => $this->faker->unique()->numerify('EXP-#####'),
'company_id' => User::find(1)->companies()->first()->id,
'amount' => $this->faker->randomDigitNotNull(),
'notes' => $this->faker->text(),
'attachment_receipt' => null,
'customer_id' => Customer::factory(),
'exchange_rate' => $this->faker->randomDigitNotNull(),
'base_amount' => $this->faker->randomDigitNotNull(),
'currency_id' => Currency::find(1)->id,
];
}
}