File "ExchangeRateLogFactory-20250316115719.php"

Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/database/factories/ExchangeRateLogFactory-20250316115719.php
File size: 744 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Database\Factories;

use App\Models\Currency;
use App\Models\ExchangeRateLog;
use App\Models\User;
use Illuminate\Database\Eloquent\Factories\Factory;

class ExchangeRateLogFactory extends Factory
{
    /**
     * The name of the factory's corresponding model.
     *
     * @var string
     */
    protected $model = ExchangeRateLog::class;

    /**
     * Define the model's default state.
     */
    public function definition(): array
    {
        return [
            'company_id' => Currency::find(1)->id,
            'base_currency_id' => User::find(1)->companies()->first()->id,
            'currency_id' => Currency::find(4)->id,
            'exchange_rate' => $this->faker->randomDigitNotNull(),
        ];
    }
}