Skip to content

Instantly share code, notes, and snippets.

@dinhquochan
Last active August 12, 2016 17:17
Show Gist options
  • Save dinhquochan/fd0d4947999f0cddc4e69211a77d3283 to your computer and use it in GitHub Desktop.
Save dinhquochan/fd0d4947999f0cddc4e69211a77d3283 to your computer and use it in GitHub Desktop.
Generating archive list for a blog in Laravel
$links = DB::table('post')
->select(DB::raw('YEAR(created_at) year, MONTH(created_at) month, MONTHNAME(created_at) month_name, COUNT(*) post_count'))
->groupBy('year')
->groupBy('month')
->orderBy('year', 'desc')
->orderBy('month', 'desc')
->get();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment