Fix data for local page loading

This commit is contained in:
Jonny Barnes 2021-08-31 16:50:49 +01:00
parent 8c1709c022
commit d2123f6bfa

View file

@ -209,12 +209,6 @@ EOF;
->where('id', $noteWithLongUrl->id) ->where('id', $noteWithLongUrl->id)
->update(['updated_at' => $now->toDateTimeString()]); ->update(['updated_at' => $now->toDateTimeString()]);
$noteWithLocation = Note::create([
'note' => 'Some location data',
'created_at' => $now->subDay(),
'location' => '1.23,4.56',
]);
Note::factory(10)->create(); Note::factory(10)->create();
} }
} }