How to get inserted Records ID / Column Data after inserting data in tables in Laravel

In Laravel, when you plan to insert new record into the database table, you can get the ID or any other column’s value of the inserted record using some different methods.Following are some of the approaches: 1. Use create() Method with Eloquent Model If you use create() method to insert a record,you can easily get … Read more

Custom Login and Registration in Laravel

In this post i am going to tell you how can we make custom login and registration in Laravel so first i need to create a registration page.For that, i need to create a blade file called registration.blade.php  and this file will be created under resources > views registration.blade.php New, create a another file called login.blade.php … Read more

Laravel – PHP Fatal error: Composer detected issues in your platform: Your Composer dependencies require a PHP version

PHP Fatal error: Composer detected issues in your platform: Your Composer dependencies require a PHP version “>= 8.0.2”. You are running 7.3.2. Question : I am working on a Laravel project and when i made a zip file of this project and uploaded into the web hosting of Linux server and it started to show … Read more

How to checkbox get selected from database table

In this tutorial I am going to explain how can we get selected checkbox automatically by checking the recording into database table in Laravel. In this tutorial program will checker whether the value of checkbox is already in table or not, If the value is already available in database table it will be checked and … Read more

How to Generate Custom Unique ID in Laravel

The unique ID can be important part of any web application because it uniquely identify the record by that particular id and this unique id can be used for many purpose. Some people like to generate unique id as auto incremental and someone like to generate unique id in custom format. This custom id can … Read more