Answers for "laravel update model without changing timestamp"

PHP
12

laravel model without timestamps

<?php

namespace App;

use IlluminateDatabaseEloquentModel;

class Post extends Model
{
    public $timestamps = false;

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

Code answers related to "laravel update model without changing timestamp"

Browse Popular Code Answers by Language