for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Database\Seeders;
use DB;
use Illuminate\Database\Seeder;
/**
* Class MultSeeder
*
* @package Database\Seeders
* @author Andrey Girnik <[email protected]>
*/
class MultSeeder extends Seeder
{
* Insert a new entry in to the languages table.
* @return void
public function run()
DB::statement("INSERT INTO languages(`locale`, `short_name`, `name`, `default`, `created_at`, `updated_at`) VALUES ('en-EN', 'en', 'English', 1, NOW(), NOW())");
}