styde/seeder 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

styde/seeder

最新稳定版本:1.0.5

Composer 安装命令:

composer require styde/seeder

包简介

Laravel's improved seeders

README 文档

README

This package for Laravel allow seeding your database with faker data. It is an alternative to Model Factories of Laravel 5.1. With this package you can seed a model of your application and its related models too, using the package Faker.

Installation

To install through Composer:

  1. Add the following instruction to the "require" object in your composer.json:
"styde/seeder": "^1.0"

or simply execute on your console:

composer require styde/seeder

Then run composer update.

  1. After Styde Seeder is installed, you need to add the service provider to the providers array in config/app.php
'providers' => [
    // ...
    Styde\Seeder\SeederServiceProvider::class,
    // ...
],
  1. Then add the following to your database/seeds/DatabaseSeeder.php:
<?php

use Styde\Seeder\BaseSeeder;

class DatabaseSeeder extends BaseSeeder
{
    protected $truncate = array(
        //'users',
    );

    protected $seeders = array(
        //'User',
    );
}

Specify the tables of database you want to $truncate (order does not matter since the foreign key check will be disabled) Then add the $seeders, by default it will autocomplete the suffix "TableSeeder" so no need to add it.

Usage

To create a new seeder file you can run:

php artisan styde:seeder NameOfSeeder

And a new file called NameOfSeederTableSeeder.php will be created at database/seeds directory.

Then complete your seeder with new instance of the Model in the getModel() method and its attributes in the getDummyData method. You can use Faker for generates fake data, for example:

php artisan styde:seeder User

Completing the Model in getModel() and some attributes with faker data:

<?php

use Styde\Seeder\Seeder;
use Faker\Generator;
use App\User;

class UserTableSeeder extends Seeder
{
    protected $total = 50;

    public function getModel()
    {
        return new User();
    }

    public function getDummyData(Generator $faker, array $customValues = array())
    {
        return [
            'name' => $faker->name,
            'email' => $faker->email,
            'password'  => bcrypt('secret'),
        ];
    }
}

Once you run the seed command in Laravel php artisan db:seed it will create 50 users with random data by default.

Helpers

Also, you can use these two helpers when you are working with tests or php artisan tinker:

/**
     * Create one instance or a collection of the given model and persist them to the database.
     *
     * @param  string  $seeder
     * @param  integer $total
     * @param  array   $customValues
     *
     * @return mixed
     */
    function seed($seeder, $total = 1, array $customValues = array())

For example to create 5 users seed('User', 5) or to create one user with specific data seed('User', ['name' => 'John', 'email' => 'john@example.com']).

/**
     * Create one instance or a collection of a given model.
     *
     * @param  string  $seeder
     * @param  integer $total
     * @param  array   $customValues
     *
     * @return mixed
     */
    function model($seeder, $total = 1, array $customValues = array())

With this helper you only can create an instance or collection, but will not be persisted to the database.

About

Styde Seeder was created by Duilio Palacios as part of the code for the course Crea tu primera aplicación con Laravel 5 (in Spanish)

统计信息

  • 总下载量: 6.1k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 9
  • 点击次数: 3
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 8
  • Watchers: 2
  • Forks: 9
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-06-14

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固