How to disable created_at and updated_at timestamps in Laravel Model?
In this post we will give you information about How to disable created_at and updated_at timestamps in Laravel Model?. Hear we will give you detail about How to disable created_at and updated_at timestamps in Laravel Model?And how to use it also give you demo for it if it is necessary.
By default, Laravel Eloquent maintain two columns created_at
and updated_at
in your database tables automatically you just need to add these two columns in your tables and Eloquent will take care of the rest.
If you create table by following Laravel special schema builder then it create by default these two columns by using $table->timestamps();
.This is very useful sometime to deal with last edit data on a specific table
Change default configuration name of Laravel's created_at and updated_at
In this post we will give you information about Change default configuration name of Laravel's created_at and updated_at. Hear we will give you detail about Change default configuration name of Laravel's created_at and updated_atAnd how to use it also give you demo for it if it is necessary.
In this Laravel PHP Tutorial, I will let you know the use of created_at and updated_at column in a database table.
By default, Eloquent automatically maintain the date time value in created_at and updated_at column on your database table. If you do not want for eloquent to maintain created_at and updated_at columns then disable it by adding following property in your model class :
- class Member extends Eloquent {
- protected $table='members';
- public $timestamps= false;
- }
class Member extends Eloquent { protected $table = 'members'; public $timestamps = false; }
If you want to map Laravel's timestamp from created_at
to created_on
and updated_at
to modified_on
then you can override const on your model in following way :
const CREATED_AT = 'created_on'; const UPDATED_AT = 'modified_on';
Now Eloquent will take care of the column "created_on" and "modified_on" on your database table.
How to disable created_at and updated_at timestamps in Laravel Model?
Label :
PHP Laravel PHP Framework How To MVC Web DevelopmentHope this code and post will helped you for implement Change default configuration name of Laravel's created_at and updated_at. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs
Sometime if this is not so useful and you do not want that Eloquent will maintain these two columns then you can disable it by adding following timestamp property false to your model :
- class Product extends Eloquent {
- protected $table='products';
- public $timestamps= false;
- }
class Product extends Eloquent { protected $table = 'products'; public $timestamps = false; }
You can check if it is working or not then save any record in table and see these two columns will have null value if you set timestamps property false.
If you want to disable one timestamps for updated_at only then you can write a mutator for the same column which you want to disable.
- public functionsetUpdatedAt($value)
- {
- // Do nothing.
- }
public function setUpdatedAt($value) { // Do nothing. }
Same you can do with created_at column if you need to disable only created_at column.
Try this when you need it in your application.
Hope this code and post will helped you for implement How to disable created_at and updated_at timestamps in Laravel Model?. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs