subMonth()->subDays(5); $articleFirst = Article::create([ 'title' => 'My New Blog', 'main' => 'This is *my* new blog. It uses `Markdown`.', 'published' => 1, 'created_at' => $now, ]); DB::table('articles') ->where('id', $articleFirst->id) ->update(['updated_at' => $now->toDateTimeString()]); $now = Carbon::now()->subHours(2)->subMinutes(25); $articleWithCode = <<<'EOF' I wrote some code. I liked writing this: ```php 'Some code I did', 'main' => $articleWithCode, 'published' => 1, 'created_at' => $now, ]); DB::table('articles') ->where('id', $articleSecond->id) ->update(['updated_at' => $now->toDateTimeString()]); } }