Skip to content

Instantly share code, notes, and snippets.

@stephenjude
Created June 3, 2018 22:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stephenjude/19ef7476de62da5714d4bfcace080a6f to your computer and use it in GitHub Desktop.
Save stephenjude/19ef7476de62da5714d4bfcace080a6f to your computer and use it in GitHub Desktop.
<?php
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
//create 10 products
factory(App\Product::class, 10)->create();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment