public function action_index()
{
$data['test']=\Format::forge(array('a'=> array('fname'=>'samit','lname'=>'rimal')))->to_json();
return Response::forge(View::forge('welcome/index',$data,false));
}
i got the output :public function action_index()
{
$data['test']=\Format::forge(array('a'=> array(array('fname'=>'samit','lname'=>'rimal'))))->to_json();
return Response::forge(View::forge('welcome/index',$data,false));
}
It looks like you're new here. If you want to get involved, click one of these buttons!