Arrow functions also called “short closures”. We can always access the parent scope, there’s no need for the use keyword. Here is a simple example…
Leave a CommentCategory: PHP / MySQL
Laravel has in-built increment() and decrement() functions to increase or decrease a value of the column, by 1 or with the given number. Below are…
Leave a CommentPHP 7.4 allows for underscores to be used to visually separate numeric values. It looks like this: $unformattedNumber = 123456789.78; $formattedNumber = 123_456_789.78; The underscores…
Leave a CommentCreate a controller called UploadController.php with the following code. Create a view file Create a file called upload.blade.php in the resources/views directory with the below…
Leave a CommentIn this tutorial, I will show you how to use the Datatables in the Laravel based project withyajra/laravel-datatables-oracle package. For this tutorial, we gonna use…
Leave a CommentThis article demonstrates how to use PHP to connect to an Azure SQL database. To connect to an Azure SQL or Any SQL server using PHP, you…
Leave a CommentIn this tutorial, I will show you creating a login system using CodeIgniter. To generate a decent login form design we gonna use Twitter Bootstrap…
7 CommentsIn this tutorial, I will show you creating RESTful apis using Laravel 5.7 php framework. We gonna use the Laravel’s API resources to build RESTful…
2 CommentsIn this post, I would like to show you deploying your slim framework project to CPanel (without SSH access). In general, for CPanel, the web…
Leave a CommentIn this post, I would like to show you the hidden and useful functions of Laravel’s Eloquent ORM to Increment and Decrement value of the…
Leave a Comment