I need to pass two arrays to a view, is it possible to do this?
Arrays are created as follows:
$cliente = ORM::factory('cliente')->where('id', '=', $id)->find();
$usuario = ORM::factory('usuario')->where('codCliente', '=', $cliente->id)->find_all();
I need to pass the array $cliente
and the array $usuario
to my view, does anyone know how I can do this?