Laravel how to turn off timestamps in controller
淡淡烟草味
淡淡烟草味 2017-05-16 16:55:19
0
1
549

How to turn off timestamps in the controller?
The closing method of the model is

<?php namespace App;

use Illuminate\Database\Eloquent\Model;

class user extends Model {

     //protected $table = 'systems';

     //关闭时间
     public $timestamps = false;
}

What if I change it in the controller? Inject save verse case. . I want to simply write

淡淡烟草味
淡淡烟草味

reply all(1)
Peter_Zhu

Although I’m not sure whether this is what the questioner asked, you can try the following:

$user = User::find(1);
$user->timestamps = false;
$user->age = 32;
$user->save();

If you have any questions related to Laravel, you can ask me at Laravist. This is the Laravel community I just launched

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template