如何在 Laravel 8 中同一控制器的另一个函数中使用变量形式的函数
我从员工那里获得了手机号码,我必须在部门功能中传递 $mobile 变量。那么如何在另一个请求类型函数中使用函数的变量。
public function employee($id){
$result= Employee::where('emp_id',$id)->get();
$mobile= $result[0]['mobile'];
}
public function department(Request $request){
$req= new Department
$req->name= $request->name;
$req->emp_id=$request->eid;
$req->emp_mobile=$mobile //the variable want to pass
$req->save();
}
I got the mobile number from employee i have to pass the $mobile variable in department function. so how can I use a variable of a function in another Request type function.
public function employee($id){
$result= Employee::where('emp_id',$id)->get();
$mobile= $result[0]['mobile'];
}
public function department(Request $request){
$req= new Department
$req->name= $request->name;
$req->emp_id=$request->eid;
$req->emp_mobile=$mobile //the variable want to pass
$req->save();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加以下代码:
在员工功能上,在部门功能上
on employee function, add this code
on department function: