Answer the question
In order to leave comments, you need to log in
How to display records of current date in laravel?
There is a table in a DB in it fields timestamps ()
How to deduce only those records which are created today. As well as for the current year.
Answer the question
In order to leave comments, you need to log in
There is a great tool for working with dates
carbon.nesbot.com/docs
Model::query()->where('created_at','>',Carbon::today())->get();
Read the Carbon documentation.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question