Skip to content

Commit

Permalink
added DummyDatabaseSeeder to easily seed the database with one artisa…
Browse files Browse the repository at this point in the history
…n command instead of 4 or 5
  • Loading branch information
jhuebel committed Jul 17, 2019
1 parent 9bcd194 commit 45bd7c0
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions database/seeds/DummyDatabaseSeeder.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

use Illuminate\Database\Seeder;

class DummyDatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run()
{
$this->call('UsersDummyTableSeeder');
$this->call('ClientsDummyTableSeeder');
$this->call('ContactsDummyTableSeeder');
$this->call('TasksDummyTableSeeder');
$this->call('LeadsDummyTableSeeder');
}
}

0 comments on commit 45bd7c0

Please sign in to comment.