How to Set Meta(Title,Description,Keywords) in Layout file in Laravel livewire

In Laravel, To set meta tags (title, description, and keywords) dynamically in a Laravel Livewire layout file, follow these steps: Step 1. Define Meta Properties in the Livewire Component To add title, description, and keywords properties to your Livewire component and set default values or dynamically update them in the component’s logic. Example: 2. Pass … Read more

How to Run Migration Under a Folder in Laravel

In Laravel, if you want to use database tables you have to create migrations to make those tables. These migrations files are required to run migration commands to generate tables.Generally this migrations files are found under \Database\Migrations folder but some time if we are developing a project which have multiple sections and these sections may … Read more

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