'ErrorException Undefined offset: 1 laravel error

I'm getting undefined offset: 1,

The $data variable is getting the values from database , have checked that with print_r. There is some problem while passing the $data to the view 'user-info'

public function getDetails(){
    $ooPost= new userDetailModel();
   // $data= $ooPost::all();
    $data = $ooPost::all()->sortByDesc("created_at");

    return view('user-info', ['user'=>$data] );


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source