update npm dependencies, fix map style menu issues

This commit is contained in:
Jonny Barnes 2018-04-15 10:43:08 +01:00
parent 7eacb52723
commit f9bd0bad03
88 changed files with 2700 additions and 2035 deletions

View file

@ -27,6 +27,13 @@ class NotesTableSeeder extends Seeder
$noteWithPlace->place()->associate($place);
$noteWithPlace->save();
sleep(1);
$noteWithPlaceTwo = Note::create([
'note' => 'Its really good',
]);
$place = Place::find(1);
$noteWithPlaceTwo->place()->associate($place);
$noteWithPlaceTwo->save();
sleep(1);
$noteWithContact = Note::create([
'note' => 'Hi @tantek'
]);