Answers for "laravel save without timestamps"

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

Browse Popular Code Answers by Language