Working With Nested Arrays And Objects | Laravel Array Helper Function: array_pluck
…ay. Let's add a new Job class, which will just be a very simple representation of a job: 1 <?php 2 3 class Job { 4 5 public $ name = ' ' ; 6 7 public function __construct ( $ name ) 8 { 9 $ this -> name = $ name ; 10 } 11 12 } Now we will modify...