Modify waterfall picture note to be just picture with no content
This commit is contained in:
parent
fc75a336cb
commit
7f8adc1220
1 changed files with 3 additions and 4 deletions
|
@ -94,10 +94,9 @@ class NotesTableSeeder extends Seeder
|
||||||
$media->type = 'image';
|
$media->type = 'image';
|
||||||
$media->image_widths = '3648';
|
$media->image_widths = '3648';
|
||||||
$media->save();
|
$media->save();
|
||||||
$noteWithImage = Note::create([
|
$noteWithOnlyImage = new Note();
|
||||||
'note' => 'A lovely waterfall',
|
$noteWithOnlyImage->save();
|
||||||
]);
|
$noteWithOnlyImage->media()->save($media);
|
||||||
$noteWithImage->media()->save($media);
|
|
||||||
sleep(1);
|
sleep(1);
|
||||||
$noteFromInstagram = Note::create([
|
$noteFromInstagram = Note::create([
|
||||||
'note' => 'Lovely #wedding #weddingfavour',
|
'note' => 'Lovely #wedding #weddingfavour',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue