Posts marked with “laravel”
Artisanal: Using Data Collections
Every application you work on will have some way to deal with a data set and take the form of arrays. You may have a class which represents a data set with specific attributes and helper methods. Laravel is no different and takes the entire idea of a data set to the next level by using Collections.
Talking Code – December 2017
December 2017: Alexa skills, Chat bots, Machine Learning, Event Sourcing changes, PHP_CodeSniffer, PHP 7.2 w/libsodium and more.
Artisinal: Queue Monitoring
Laravel Horizon is a beautiful and code driven configured dashboard for your Redis queues. You can easily monitor throughput, job run times, as well as job failures. Horizon utilizes asynchronous process signals which means your project should be on PHP 7.1 or higher. You _are_ running PHP 7.1, right? Horizon keeps your worker configuration in one simple file, so it’s easy to share with your coworkers or teammates via version control.
Modern Magento – November 2017
FREE issue! November 2017: Magento, Laravel Queues, Payment Gateways, PCI-DSS Compliance, PHP Frameworks and more.
Composing Software – October 2017
Read the October 2017 issue. In this issue, we cover Composer, Private Packagist, Machine Learning, Doctrine, PHP 7.2, and more.
Embracing Change – September 2017
Read the September 2017 issue. In this issue, we cover Git tips, Microservices, Machine Learning, job hunting, Doctrine ORM, security, and more.
Who Goes There – August 2017
Read the August 2017 issue of the magazine. Topics this month include Google Authenticator, Single Sign On, job hunting, Zend Framework 3, RBAC, testing Laravel forms, and more.
Safe at Speed – July 2017
In the July 2017 issue of the magazine: Google Cloud, Scalable Content Distribution, beyond jQuery, mental health, and more.
Secure by Design – June 2017
Learn about designing security into your application from the start in the June 2017 issue of the magazine.
Artisanal: Project Creation
Every developer has a set way of starting a new project. Most frameworks have a linear path to getting started, and Laravel is no exception. With a few commands, you can quickly get started configuring routes, writing controllers, and saving data in a database.