Latest Laravel/PHP Articles

Latest Laravel/PHP Articles curated daily from around the web.


Sai LTSep 25 · 1 min readWe can find laravel version in the “Application.php” in the path below-vendor/laravel/framework/src/Illuminate/Foundation/Application.
Recently, we moved one of our applications from Heroku over to Amazon’s Elastic Beanstalk service, where we could exercise more granular control. As part of thi...
Today I was working on setting up Travis CI for Cronhub builds. It took me around two hours to make it work. I was expecting the integration should be a breeze,...
CodeMentor Codementor is an online marketplace connecting developers with experts for on- demand 1:1 help via screen sharing, video, and text chat.
In a recent project, we had a requirement to send a welcome email after user registration. So I started exploring on the internet and I stumbled upon sendgrid m...
This bulletin summarizes the security vulnerabilities detected in JetBrains products and remediated in the second quarter of 2019. Here’s a summary report that...

blog.laravel.com

Vapor: Reusable Vendors
Beginning today, we are launching a new, opt-in feature for Laravel Vapor that allows Vapor to reuse the "vendor" directory from previous deployments if the con...
Today I wanted to create an article with a collection of tricks that will help us write cleaner PHP code.
Achieve superior email deliverability with ToastMail! Our AI-driven tool warms up inboxes, monitors reputation, and ensures emails reach their intended destination. Sign up today for a spam-free future. Achieve superior email deliverability with ToastMail! Our AI-driven tool warms up inboxes, monitors reputation, and ensures emails reach their intended destination. Sign up today for a spam-free future.
We shall need the following before we start our the actual development. Git, Visual Sudio Code or PhpStorm(Or whatever IDE you like), composer and later a testi...
Step 1 you will need to install the illuminate/mail package via Composer. Step:3 Next, configure your mail options by copying the mail.php in to config folder....
Every single codebase has its own technical debt, what defines technical debt, in simplicity, is how much the effort and time you would need to spend to fix leg...
Today, most web projects are developed based on the client-server model. The web client (Web UI) will call the server through the Restful service. When we invok...
CodeMentor Codementor is an online marketplace connecting developers with experts for on- demand 1:1 help via screen sharing, video, and text chat.
In this series of articles, I will talk about the Pipeline package that comes with Laravel but nobody uses it and it’s not documented. Why? Because it’s amazing...
Idea of the Iterator is to move logic related to data traversing to separate class. Iterator makes working with complex data structures easier without necessity...
Actually in a recent project, I was facing a problem. It was not a problem, actually i wanted a better solution. I created a multiple middleware and wants to re...
Much like Python and Javascript, PHP is a dynamically typed language. This means that variable types are checked while the program is executing. Dynamic typing...