laravel中的CRUD操作中,通過對代表資料表中row的model物件操作,來更新資料庫表。
對於建立新的row的操作,有兩種功能上相同的方法:
1.create;
$user = User::create(array('email => 'xx@yy.zz','password'=>'mypassword'));
2.new and save
$user = new User; $user->email = 'xx@yy.zz'; $user->password = 'mypassword'; $user->save();