In the Front Angular I send it like this
Register(register:RegisterUser){
return this._http.post(this.url+"auth",
JSON.stringify(
{'name':register.name,
'email':register.email,
'password':register.password})
,{headers:this.headers})
.map(res=>res.json());
}
and in Laravel I get this: ::
string(17) "lo q trae angular" NULL
This is the method in laravel
public function userAuth(Request $request){
var_dump('lo q trae angular',$request->input('email'));