0

I have an application in Laravel, this'm riding a calendar of upcoming releases of series and movies.

I need to show the upcoming releases, is already working the register, but they can help me make display according to earliest date?

Thank you!

smci
  • 32,567
  • 20
  • 113
  • 146
Raphael
  • 3
  • 2

1 Answers1

0

Can you show us what you currently have ? The information you provided is not enough. Are you currently using some plugins for the calendar ? What's your DB Schema ? What exactly do you want to achieve ?

Depending if the Upcoming releases are Eloquent models, then you can do something like :

UpcomingReleases::orderBy('date', 'DESC')->get();

Keep in mind that "UpcomingReleases" is a name i just came up with, until i know for sure what models are you using

Paul Bele
  • 1,514
  • 1
  • 11
  • 12