我使用了Perfect-scroll,但是此插件放置了Y和X滚动条。如何禁用X滚动?
我找到了此页面,但没有代码..
$(document).ready(function ($) {
$('.sidebar').perfectScrollbar({
useBothWheelAxes: false
})
});
Run Code Online (Sandbox Code Playgroud) 我需要更改一个帖子 created_at,因为我根据 created_at 向本月创建的帖子发送短信。当我尝试使用此 created_at 时不会改变值!
public function Controller(Posts $post){
$post->update(['created_at'=>Carbon::today()]);
}
Run Code Online (Sandbox Code Playgroud)