Laravel.io
public function controllerMethod($slug = null){
        $data = $this->some->get($slug);
        return view('view')->withData($data);
    }



// Метод get()

public function get(){
    return redirect()->route('some');
}

// При вызове controllerMethod получаю частично контент и
Cannot use object of type Illuminate\Http\RedirectResponse as array

Please note that all pasted data is publicly available.