SessionStorage, localStorage and Cookies
All these three topics or storage are used to store data on the client side which means basically web browsers like Chrome or any others. Each one has their own…
Continue ReadingAll these three topics or storage are used to store data on the client side which means basically web browsers like Chrome or any others. Each one has their own…
Continue ReadingLaravel migration helps us to easily manage and handle database table like modifying, creating and updating a table . After successful laravel installation, make sure you have generated the key…
Continue ReadingLaravel provides tons of helper functions to the users that are convenient for doing many things in your laravel application. You can find the default helper functions provided by laravel…
Continue ReadingProblem [Illuminate\Database\QueryException] SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes (SQL: alter table users add unique users_email_unique(email)) [PDOException] SQLSTATE[42000]: Syntax error or access…
Continue ReadingLaravel comes with Carbon a PHP API Extension for DateTime - Out of the box. It is easy to manipulate date and time on laravel using Carbon. Laravel timestamps created_at and updated_at…
Continue ReadingProblem This error occurs when you try to run your freshly created seeder. What actually happens is, the freshly created seeder class is not loaded in the class map. Hence…
Continue ReadingIntroduction Google recaptcha reduces the bot and spam . Today we are going to Implement Google Recaptcha in Laravel . First we need to register for Google Recaptcha , click…
Continue ReadingLaravel artisan commands are quite handy & convenient methods when it comes to take your app to the production level incredibly fast. There are many helpful laravel artisan commands .You…
Continue ReadingIntroduction This is a very simple yet one of the most common errors faced by new Laravel developers. This error is caused due to missing CSRF token in a form…
Continue Reading