Answers for "laravel save timestamp"

PHP
11

laravel model without timestamps

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Post extends Model
{
    public $timestamps = false;

    //
}
Posted by: Guest on April-03-2020
2

laravel insert timestamp now

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

laravel add timestamps to existing table

$table->dateTime('created_at')->default(DB::raw('CURRENT_TIMESTAMP'));
$table->dateTime('updated_at')->nullable();
Posted by: Guest on November-17-2020

Browse Popular Code Answers by Language