2019年3月13日 星期三

controller接收form資料的方法

*controller接收form資料的方法:

方法1:
$input = request()->all(); //全部資料
$input['password'] //單一資料

方法2:
use Illuminate\Http\Request;
public function signUpProcess(Request $request)
{
    $input = $request->all(); //全部資料
    $request->input('password') //單一資料
    $input['password'] //單一資料
}


沒有留言:

張貼留言