Let's say I have myApp1.com
and myApp2.com
, and that only the second project is written in Laravel.
My question is:
Considering that myApp2.com
has login authentication, would it be possible to create a link in myApp1.com
that would direct to a route in myApp2.com
?
//myApp1.com
<a href="http://myApp2.com/fazerAlgo/">Faça algo em myApp2.com</a>
//myApp2.com
Route::get('/fazerAlgo', 'outConttroler@fazerendoAlgo')