for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Larafolio\database\seeds;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
$this->call(UsersTableSeeder::class);
$this->call(ProjectsTableSeeder::class);
$this->call(ImagesTableSeeder::class);
$this->call(TextBlocksTableSeeder::class);
}