/** * Create a new user instance after a valid registration. * * @param array $data * @return User */ protected function create(array $data) { return User::create(['username' => $data['username'], 'email' => $data['email'], 'password' => bcrypt($data['password']), 'profile' => 'http://lorempixel.com/320/320']); }
/** * Display a listing of the resource. * * @return Response */ public function index() { return view('users', ['users' => \Pcmrcritic\Entities\User::all()]); }