Ejemplo n.º 1
0
 /**
  * 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'])]);
 }
Ejemplo n.º 2
0
 /**
  * Run the database seeds.
  *
  * @return void
  */
 public function run()
 {
     DB::table('users')->delete();
     User::create(['id' => 1, 'name' => 'Cellar', 'email' => 'system@cellar', 'password' => bcrypt('password')]);
     User::create(['name' => 'User', 'email' => 'user@cellar', 'password' => bcrypt('password'), 'ct_username' => env('CT_USERNAME'), 'ct_password' => env('CT_PASSWORD')]);
 }
Ejemplo n.º 3
0
 public function __construct()
 {
     $this->client = new Client();
     //FIXME Auth::user();
     $this->user = User::where('email', 'user@cellar')->first();
 }