laravel-programmer-quotes
All the quotes, but programmer.
After being inspired by Laravel's own Inspire class, I wanted to make a similar thing that dished out programmer quotes.
I wanted it to be a package that anyone could simply import into their Laravel project and immediately start using it.
$quote = \Athphane\ProgrammerQuotes\ProgrammerQuotes::random();
dd($quote);
It's quite easy to use as well. All you have to do is called the static random() function of the ProgrammerQuotes class and it will give you a random quote each time you call it.
The quotes were scraped from https://programming-quotes-api.herokuapp.com.