DatabaseSeeder.php 334 Bytes
Newer Older
Taylor Otwell committed
1 2
<?php

3
use Illuminate\Database\Seeder;
4
use Illuminate\Database\Eloquent\Model;
5

Taylor Otwell committed
6 7 8 9 10 11 12 13 14 15
class DatabaseSeeder extends Seeder
{
    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
        Model::unguard();
Taylor Otwell committed
16

17
        // $this->call(UserTableSeeder::class);
Graham Campbell committed
18

19
        Model::reguard();
Taylor Otwell committed
20
    }
Graham Campbell committed
21
}