Markup locations that aren’t places in h-adr markup

This commit is contained in:
Jonny Barnes 2016-10-24 18:35:48 +01:00
parent 776ebd5bb0
commit 36c3fac33b
3 changed files with 11 additions and 6 deletions

View file

@ -35,5 +35,9 @@ class NotesTableSeeder extends Seeder
mkdir(public_path() . '/assets/profile-images/aaronparecki.com', 0755);
copy(base_path() . '/tests/aaron.png', public_path() . '/assets/profile-images/aaronparecki.com/image');
}
$noteWithCoords = App\Note::create([
'note' => 'Note from somehwere',
'location' => '53.499,-2.379'
]);
}
}