update npm dependencies, fix map style menu issues
This commit is contained in:
parent
7eacb52723
commit
f9bd0bad03
88 changed files with 2700 additions and 2035 deletions
|
@ -27,6 +27,13 @@ class NotesTableSeeder extends Seeder
|
|||
$noteWithPlace->place()->associate($place);
|
||||
$noteWithPlace->save();
|
||||
sleep(1);
|
||||
$noteWithPlaceTwo = Note::create([
|
||||
'note' => 'It’s really good',
|
||||
]);
|
||||
$place = Place::find(1);
|
||||
$noteWithPlaceTwo->place()->associate($place);
|
||||
$noteWithPlaceTwo->save();
|
||||
sleep(1);
|
||||
$noteWithContact = Note::create([
|
||||
'note' => 'Hi @tantek'
|
||||
]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue