Hi everyone, I need help on how to auto delete all blogposts with status of draft every weekends (saturday and sunday) Only. How do i do this in laravel? Thanks.
Look into laravel console commands. You will make a command and schedule it on weekends to delete Blogposts::where(‘status’,’draft’)->get();
Very useful information particularly the last part, I care for such info a lot. I was seeking this certain info for a long time. Thank you and good luck. impossible game
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community