Published
- 1 min read
timestamp false in laravel
The solution for this is noted below
timestamp false in laravel
Solution
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Post extends Model
{
public $timestamps = false;
//
}
Try other methods by searching on the site. That is if this doesn’t work