Latest Laravel/PHP Articles

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


No describe more. Let’s do it. Copy Client ID & Client Secret. Option $ composer require google/apiclient:”^2.0" Option https://github.com/googleapis/google-api...
Testing new Laravel features, inspecting queries, testing validation rules and run code snippet without defining routes and writing code in a Laravel project, t...
It provides a lot of helpful commands and to list them all you need to write in your terminal:php artisan list Before every command, you can add “help” to see a...
Glimpse streamlines Laravel development by seamlessly deploying GitHub pull requests to preview environments with the help of Laravel Forge. Glimpse streamlines Laravel development by seamlessly deploying GitHub pull requests to preview environments with the help of Laravel Forge.
Consider that you have example.json with the following content: and several POPO classes to represent this JSON data: Department.phpPosition.phpPerson.php Now y...
We've super-charged custom deployment scripts in Laravel Forge with the addition of dynamic environment variables. When Forge deploys your website, we will now...

levelup.gitconnected.com

PHP 7.x — P3: Variables Intro
You might remember that there are these things called x and y variables that used to store numbers. Just substitute 2 for x and 5 for y and you get 7....
You have a MySQL database with one ore more columns of type TEXT containing arbitrary free text. You have many rows and a lot of text in each column and you exp...
Shirts painstakingly handcrafted by under-caffeinated developers. Shirts painstakingly handcrafted by under-caffeinated developers.
Laravel provides a huge set of built-in validation rules, which are often enough for most projects, but sometimes there are not trivial tasks. Fortunately, Lara...
As a developer, you would be familiar with popular frameworks and various ways of using frameworks. Laravel has the aim to take the tedium out of regular web pr...
Sometimes you need to control how many times a logic is called, specially when contacting external APIs, to avoid hard errors on requests and stopping the whole...
This tutorial assumes you already know how to set up jQuery DataTables for your webpage, and at the least basic Laravel knowledge. Security concerns: This authe...
CodeMentor Codementor is an online marketplace connecting developers with experts for on- demand 1:1 help via screen sharing, video, and text chat.
If you're using Codeception as a testing framework for your Laravel app, you may find yourself wanting to use some of the familiar Laravel testing assertions th...
Do you think that JIT in PHP 8 is the most awaited feature? Take a look at other, in my opinion PHP 8 game changers. I can’t wait for 26 November for stable rel...
There is a classic pattern while building successful products. When it’s released, it’s great, gets widely used and everyone’s happy. Part of its success is its...
Method Chaining is nothing but the concatenation of multiple methods to increase readability of code and avoid putting all the code in the single function. One...