/** * Remove the specified resource from storage. * * @param int $id * @return Response */ public function destroy($id) { User::destroy($id); Session::flash('message', 'Usuario eliminado correctamente'); return Redirect::to('/usuario'); }
/** * Create a new user instance after a valid registration. * * @param array $data * @return User */ protected function create(array $data) { return User::create(['name' => $data['name'], 'email' => $data['email'], 'password' => bcrypt($data['password'])]); }