Answers for "laravel updates timestamp column with timestamps"

PHP
2

laravel insert timestamp now

Information::create([
  'data_now'=>Carbon\Carbon::now()
])
Posted by: Guest on May-22-2021
0

custom timestamp column laravel

class BaseModel extends Eloquent {
    const CREATED_AT = 'date_created';
    const UPDATED_AT = 'date_modified';
}
Posted by: Guest on October-26-2021

Browse Popular Code Answers by Language