laravel middleware error – This page isn’t working 127.0.0.1 redirected you too many times.

I am using a middleware in my project and i created a middle ware file called validlogin.php and i applied middleware for my route which comes after login process and this route called dashboard since then it is showing following error error – This page isn’t working 127.0.0.1 redirected you too many times. validlogin.php web.php … Read more

How to replace space with dash in Laravel

Question I am developing a project in which i need to make the URLs of pages and when the user submits the title of pages and title’s space should be replaced with “-” so that it can be in correct format such as  how-to-replace-space-with-dash-in-laravel Answer Sometime you might need to replace some thing with any … Read more

htmlspecialchars() expects parameter 1 to be string, object given (view: c:\xampp\htdocs\blog1\resources\views\email-verification.blade.php)

I am using a blade file called email-verification.blade.php to send laravel emails and when i run this file the following errors comes on the browser htmlspecialchars() expects parameter 1 to be string, object given I am not getting any solution please provide me the solution. Answer It’s looking that you are using wrong syntax under … Read more

ErrorException failed loading cafile stream: `\xampp\apache\bin\curl-ca-bundle.crt’

This error occurs due to the curl library in your XAMPP setup cannot find the certificate authority (CA) file (curl-ca-bundle.crt). The certificate authority (CA) file is required for establishing secure connections via cURL. Following are the steps to resolve: Step 1: Verify the Path Make sure the curl-ca-bundle.crt file available in the specified location (\xampp\apache\bin\). … Read more

Web Development Services by Netcreator Outshines GoodFirms List of Service Provider Companies

Netcreator is a well-known IT company located in Delhi, India. It provides services within India and across the globe in the UK, USA, Canada, Australia, and various other geographical locations. The organization comprises a team of young, enthusiastic, experienced, creative innovators providing 360-degree services to their clients. These services include web development, content management, mobile … Read more

Could not find package laravel/laravel with version 7.0

Error [InvalidArgumentException] Could not find package laravel/laravel with version 7.0 in a version installable using your PHP version, PHP extens ions and Composer version.   Answer Following is the correct way of downloading a specific version of laravel composer create-project laravel/laravel blog “7.*”

Warning: Invalid version react-native@0.64.2 for expo sdkVersion 43.0.0. Use react-native@0.64.3

Warning: Invalid version react-native@0.64.2 for expo sdkVersion 43.0.0. Use react-native@0.64.3 I am working on a React-Native Project and using expo, Everything was working fine but when i started to write more code related to my project it started to show a warning : Invalid version react-native@0.64.2 for expo sdkVersion 43.0.0. Use react-native@0.64.3 and my project stopped … Read more