コード例 #1
0
 /**
  * Store a newly created resource in storage.
  *
  * @return Response
  */
 public function store()
 {
     $input = \Input::only('user_id', 'key_id');
     $this->keyFobForm->validate($input);
     KeyFob::create($input);
     \Notification::success("Key Fob Activated");
     return \Redirect::route('account.show', $input['user_id']);
 }