ItSolutionStuff.com

How to Delete All Records Older Than 30 Days in Laravel?

By Hardik Savani • November 5, 2023
Laravel

Hi Guys,

In this quick example, let's see laravel delete all records older than 30 days. This example will help you how to delete all records older than 30 days in laravel. I’m going to show you about laravel delete records older than 30 days. This tutorial will give you a simple example of laravel delete old records 30 days example. So, let's follow a few steps to create an example of laravel delete all records older than 30 days.

If you want to keep only last 30 days records in your laravel application then i will give simple database query to delete all records older than 30 days in laravel. you need to just setup in your cron. so, let's see the simple query code.

Controller Example:

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use App\Models\Post;

class PostController extends Controller

{

/**

* Write code on Method

*

* @return response()

*/

public function index(Request $request)

{

Post::whereDate('created_at', '<=', now()->subDays(30))->delete();

}

}

I hope it can help you...

Tags: Laravel
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

šŸ“ŗ Subscribe on YouTube

We Are Recommending You

ā˜…

Laravel 10 Enum Model Attribute Casting Example

Read Now →
ā˜…

Laravel 10 Model Observers Example Tutorial

Read Now →
ā˜…

Laravel 10 Model Events Example Tutorial

Read Now →
ā˜…

How to Add Custom Attribute in Laravel Model?

Read Now →
ā˜…

Get Array of Ids from Eloquent Models in Laravel

Read Now →
ā˜…

Laravel Eloquent Find by Column Name Example

Read Now →
ā˜…

Laravel Group By with Min Value Query Example

Read Now →
ā˜…

Laravel Eloquent doesntHave() Condition Example

Read Now →
ā˜…

Laravel Eloquent orWhereHas() Condition Example

Read Now →
ā˜…

Laravel Eloquent Group By with Month and Year Example

Read Now →
ā˜…

Laravel Eloquent When Condition Example

Read Now →
ā˜…

Laravel Eloquent firstOr() Example

Read Now →
ā˜…

Laravel Eloquent withMin(), withMax() and withAvg() Example

Read Now →
ā˜…

Laravel Eloquent withSum() and withCount() Example

Read Now →