I am trying to get the first element from a subarray. The data needed in my result collection looks like this:
#attributes:array:11 [▼
    "id" => 1
    "title" => "Eerst nieuwsbericht voor Jochen"
    "content" => "<p>Dit is een test</p>\n"
    "tags" => ""
    "images" => "[2,3,4,1]"
    "social_media" => ""
    "publish_date" => "2015-08-27 01:40:17"
    "created_at" => "2015-08-27 13:40:17"
    "updated_at" => "2015-08-27 13:40:17"
    "slug" => "eerst-nieuwsbericht-voor-jochen"
    "files" => array:4 [▼
        2 => array:11 [▼
            "id" => 2
            "parent_id" => 0
            "type" => "file"
            "path" => "/uploads/flyfish"
            "name" => "05-vogelkers1-E2.jpg"
            "file_type" => "jpg"
            "size" => 162936
            "width" => 1024
            "height" => 768
            "created_at" => Carbon {#368 ▶}
            "updated_at" => Carbon {#338 ▶}
          ]
      3 => array:11 [▶]
      4 => array:11 [▶]
      1 => array:11 [▶]
    ]
]
I want to get the 'name' from the first element in the sub array 'files'. Is there a shorthand notation to do so?
I can get to my needed result with
$newsDetail->files[2]['name']
But then I need to know that key 2 is actually the first key in the array 'files'.
 
     
     
    