/** * Display the specified resource. * * @param int $id * @return \Illuminate\Http\Response */ public function show($id) { // if ($user = User::find($id)) { return response()->json(['name' => $user->name, 'status' => 'OK']); } else { return response()->json(['status' => 'not_found']); } }
/** * 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'])]); }