Laravel基础(五)--使用Eloquent ORM操作数据库之更新记录


/**
 * Created by PhpStorm.
 * User: djk
 * Date: 2018/3/16
 * Time: 22:18
 */
namespace App\Http\Controllers;
use App\Kcb;
use Illuminate\Support\Facades\DB;
class KcbController extends Controller
{
    public function ormupdate()
    {
        //使用模型更新记录
//        $kcb = Kcb::find(1);
//        $kcb->course = '英语';
//        $bool = $kcb->save();
//        dd($bool);
        //使用查询构造器,返回更新的记录数
//        $sum = Kcb::where('id','=',1)->update(
//            ['course' => '高等数学']
//        );
//        dd($sum);
    }
}

你可能感兴趣的:(laravel学习)