Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Письменов Дмитрий Иванович / yourroomads

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • yourroomads
  • database
  • factories
  • CampaingFactory.php
  • Vladislav's avatar
    #19461 Страница настройки целевых аккаунтов. · a46b84a8
    Vladislav committed May 19, 2021
    a46b84a8
CampaingFactory.php 224 Bytes
BlameHistoryPermalink
Edit
1 2 3 4 5 6 7 8 9 10
<?php

use Faker\Generator as Faker;

$factory->define(App\Models\Campaigns::class, function (Faker $faker) {
    return [
        'name' => $faker->name,
        'external_id' => $faker->unique()->randomNumber()
    ];
});