<?php

class {{className}} extends Seeder {

	public function run()
	{
		// Uncomment the below to wipe the table clean before populating
		// DB::table('{{models}}')->truncate();

		${{models}} = array(

		);

		// Uncomment the below to run the seeder
		// DB::table('{{models}}')->insert(${{models}});
	}

}
