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
    #19468 Первоначальная загрузка групп объявлений (added test) · 58833cb1
    Vladislav committed May 14, 2021
    58833cb1 Browse Files
CampaingFactory.php 192 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10
<?php

use App\Models\Campaigns;
use Faker\Generator as Faker;

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