Create own PHP Router – Named URL Segments
This Custom PHP Router series is inspired from Laravel's router. This is second instalment in the series of create your own PHP router.
This Custom PHP Router series is inspired from Laravel's router. This is second instalment in the series of create your own PHP router.
This article will cover the 8 most commonly used sorting algorithms with Python.
The JavaScript Array.map() method allows to iterate over an array and modify its elements using a callback function. The callback function will then be executed on each of the array's elements.
Check out these cool CSS tips and tricks that you can make use in your next project or website.
Arrays are list-like objects whose prototype has methods to perform traversal and mutation operations. Neither the length of a JavaScript array nor the types of its elements are fixed. Since an array's length can change at any time, and data can be stored at non-contiguous locations in the array,
A stateless component is just presentation of the state. It only can render props and it should only do that. A good example is a header component: let’s say we have a header which needs to be styled and displayed especially so we create a header stateless component which would look like this.
For scenarios where you require your dates in Laravel to be properly formatted in human readable form for your APIs. Here's the simple snippet you can use in your Model class.
There're plenty of libraries for setting up FCM notifications with Laravel. But i found it pretty tough to set it up. In this short tutorial, we'll implement FCM Notifications with Laravel from the ground up. So fasten your seat belts and follow along.
Featured posts let you choose specific posts to highlight on your webpage. There are several plugins available to achieve featured posts as well.
Laravel provides an awesome and easy to use translation system. When we render our content on the back-end only, there is almost nothing to do but translate the strings in every language we need.