使用 Laravel 插入created_at数据
我似乎无法使用Laravel在数据库表中插入数据。我正在尝试从POST中获取该数据,然后尝试将其保存到数据库中。created_at
我目前正在这样做:
$create_dt = date("Y-m-d H:i:s A", strtotime($_POST['post_date']." ".$_POST['post_time']));
$name = $_POST['name'];
$post = new Post();
$post->name = $name;
...
$post->created_at = $create_dt;
$post->save();
但它给出了一个错误:
Uncaught exception 'InvalidArgumentException' with message in Carbon.php
和
Unexpected data found. Unexpected data found. Data missing in Carbon.php
我该如何解决这个问题?我是否需要在模型中设置为 false?(我真的不想这样做,因为我对它如何自动插入$timestamps
updated_at
)