LimitsFactory.php 794 Bytes
<?php

use Faker\Generator as Faker;
use Illuminate\Support\Str;

/*
|--------------------------------------------------------------------------
| Model Factories
|--------------------------------------------------------------------------
|
| This directory should contain each of the model factory definitions for
| your application. Factories provide a convenient way to generate new
| model instances for testing / seeding your application's database.
|
*/

$factory->define(App\Models\Limits::class, function (Faker $faker) {
    return [
        'service' => $faker->word,
        'method' => $faker->word,
        'spent' => $faker->randomDigit,
        'current' => $faker->randomDigit,
        'day' => $faker->randomDigit,
        'reserved' => $faker->numberBetween(0, 1),
    ];
});