php - current - url() laravel
Laravel Form Action Url (2)
No sé cómo enviar datos (en POST) a otro sitio que no sea el mío con Laravel Form.
Intenté un formulario (GET):
{!! Form::open(array(''url'' => ''http://other.domain.com'')) !!}
<input type="text" name="test" value="something" />
<button type="submit">Submit</button>
{!! Form::close() !!}
Permanece en: mydomain: 8000 / mypage? Test = something
Pero quiero que esto sea http://other.domain.com?test=something
¿Cualquier pista?
Creo que lo que estás buscando es
{!! Form::open(array(''action'' => ''http://other.domain.com'')) !!}
El problema que tuve fue ''HTML'':
<form>
<form action=''http://other.domain.com''>
<input type="text" name="test" value="something" />
<button type="submit">Submit</button>
</form>
</form>
Y el hecho es que cuando haces clic en el botón de enviar toma la primera forma. Muy raro.