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

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

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
    About us Disclaimer Sitemap
    php.cn:Public welfare online PHP training,Help PHP learners grow quickly!