\Request::forge('tags/admin/dashboard/save', false)->execute(array(array('tags' => $sorted_tags['new'])))->response()->body()
\Request::forge('authors/admin/dashboard/save', false)->execute(array(array('authors' => $sorted_authors['new'])))->response()->body()
$sorted_tags['new'] is simple array like [1,2,3,5]
public function action_save($authors) {
// $authors output array( 'authors' => array(1,2,3,4))
}
public function action_save($tags) {
//$tags output array(1,2,3,4)
}
It looks like you're new here. If you want to get involved, click one of these buttons!