Guest User

Untitled

a guest
Mar 23rd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. dd($items['acf']['items']);
  2. //produces array:2 [▼
  3. 0 => array:2 [▶]
  4. 1 => array:2 [▶]
  5. ]
  6.  
  7. collect($items['acf']['items'])->each(function($chapter) use ($chapters){
  8. $chapters->push((object) array('title' => $chapter['title'], 'timestamp' => $chapter['timestamp']));
  9. });
  10.  
  11. Undefined index: items
Add Comment
Please, Sign In to add comment