Monday, May 22, 2017

send user data to another user in laravel 5.4

I try to send user data stored in database to another users after first user click on button.

I asked Add apply button to laravel 5.4 this question before, and I'm trying to do what was suggested to me, currently i have this code:

@if (Auth::guest())

@else
<div class="text-center">
<a class="btn btn-info btn-round" href="#" id="">
<i class="now-ui-icons ui-1_send"></i> APPLY NOW
</a>
</div>
@endif

first of all I know my code is not complete and I don't know how to finish it! Second I have no idea how to pass data to second user.

PS: I need code not just suggestions I already got suggestions and I'm stuck in that.

Thanks.



via robert nicjoo

Advertisement