Answer the question
In order to leave comments, you need to log in
How to get all years of records in Laravel table?
There is a table of posts with a standard field created_at
.
You need to get a list of all post publication years.
What is the best way to do this?
Answer the question
In order to leave comments, you need to log in
$query->select(DB::raw( 'YEAR(created_at) as year' ))->distinct()
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question