File "factory.stub"

Full Path: /home/fundopuh/trader.fxex.org/vendor/laravel/framework/src/Illuminate/Database/Console/Factories/stubs/factory.stub
File size: 315 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace {{ factoryNamespace }};

use Illuminate\Database\Eloquent\Factories\Factory;

class {{ factory }}Factory extends Factory
{
    /**
     * Define the model's default state.
     *
     * @return array
     */
    public function definition()
    {
        return [
            //
        ];
    }
}