jonnybarnes.uk/database/seeds/ContactsTableSeeder.php

29 lines
605 B
PHP
Raw Normal View History

2016-05-19 15:01:28 +01:00
<?php
use App\Models\Contact;
2016-05-19 15:01:28 +01:00
use Illuminate\Database\Seeder;
class ContactsTableSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
2017-07-17 17:07:08 +01:00
Contact::create([
2016-05-19 15:01:28 +01:00
'nick' => 'tantek',
'name' => 'Tantek Çelik',
2016-05-19 15:01:28 +01:00
'homepage' => 'http://tantek.com',
'twitter' => 't',
]);
2017-07-17 17:07:08 +01:00
Contact::create([
2016-05-19 15:01:28 +01:00
'nick' => 'aaron',
'name' => 'Aaron Parecki',
'homepage' => 'https://aaronparecki.com',
2017-07-17 17:07:08 +01:00
'facebook' => '123456',
2016-05-19 15:01:28 +01:00
]);
}
}