Fresh code drop

Save without touching timestamps

PHP

Original CodeSnap example inspired by Laravel News. Source: https://laravel-news.com/eloquent-tips-tricks

PHP
CodeSnap // free canvas

Save without touching timestamps

<?php

$product->forceFill([
    'updated_at' => '2025-01-01 10:00:00',
]);

$product->save(['timestamps' => false]);

// Further reading: https://laravel-news.com/eloquent-tips-tricks

Turn your code into a post.Five templates are free—no account needed.

Remix this snap