Hello Guyz, In this tutorial we will learn setting different permission to users based on their roles. We often need to allow different tasks for different users. For example- if you are having a blog and you want to add an user that can only write and read articles,...
The database is the backbone of any web development. We often need to store the user data into our database and further retrieve the data and display in the web pages. In this tutorial you will learn how you can insert data into MySQL database using Laravel 5. MySQL is...
Whenever a user submits a form, the input must be validated to ensure that our app is working on clean and useful data. Validating form data prevents user from entering invalid data. For example- if a user is asked to enter their Email address and if the user enters it...
Laravel resource controllers are helpful in case you want to handle all the HTTP request for a resource. For example if you are creating a blog then you must want to perform each and every request to a post. The resource controllers are like simple controllers, but also...
QR codes are designed to carry a bunch of data. It has greater storage capacity and fast readability as compared to barcodes. QR codes are consists of black squares horizontally and vertically on a white background. This can be read by imaging devices like cameras. The...
The database tables are related to each other, so that we can fetch data in a meaningful way. For example an order table should be related to customer table, so that we can know who has placed the order. The relationship can be of many types like one-to-one, one-to-many...
In this tutorial, you will learn how you can insert data into MySQL database using PHP PDO class. PDO stands for PHP Data Objects. PDO is not limited to only MySQL database, but also can be used with another database systems. PDO is object oriented, it means we need...