Posts by Author : tgugnani

PHP

May 12, 2018

tgugnani

If you are are trying to use file_get_contents() function to fetch the contents of a URL and you receive Error something like Warning: file_get_contents(): http:// wrapper is disabled in the server...
Read Article
So I move my application to hosting server and things don't run as expected. Look's like my fetching my environment variables from .env file via env() function always return blank. While scratching...
Read Article
There are times when you are supposed to code a functionality that will require you to Search Encrypted records in Laravel. I have been involved in a Medical project where it is required to encrypt...
Read Article
I have been experimenting with Laravel Dusk and it's powerful package for the Laravel application Browser testing. Recently I have been involved in a Laravel Application Migration to a new version,...
Read Article
This is a straightforward How to Config article if you are looking to test your unit and feature lest in Laravel with phpunit along with SQLite Database. Following are the steps.   Open...
Read Article
I have been working with the Laravel Framework for over more than Three years and I still consider myself a beginner in it because there is much that can be done with this framework. And with the rele...
Read Article
In this tutorial we will go over Example of Multi Page / Step Form in Laravel with Validation. This tutorial does not use any javascript component to create multi step form. Instead we will create...
Read Article
If you are using PhpMyAdmin for the database export for the remote database, and if your database is too huge then you may face the timeout issue. I faced the similar issue when I was looking to re...
Read Article
Laravel comes with a out of box authentication feature. It works perfect to handle basic Authentication features like Login, Logout, Registration etc. In this article we will make use of Laravel Authe...
Read Article
In this short tutorial we will cover an Example of File Upload with Validation in Laravel 5.6. We will use Laravel's File Storage abstraction to upload file to the server. Let's dig into the steps,...
Read Article