$post = Referat::where('slug', $slug)->with('categories')->with('tags')->firstOrFail(); $post->timestamps = false; ++$post->views; $post->update();
То есть нужно прописать $post->timestamps = false; помимо остального.
Создание, продвижение, покупка сайтов
$post = Referat::where('slug', $slug)->with('categories')->with('tags')->firstOrFail(); $post->timestamps = false; ++$post->views; $post->update();
То есть нужно прописать $post->timestamps = false; помимо остального.