Commonly password are vulnerable for user setup with weak passwords which attacker and exploit hack into their account. To prevent user using very simple/regular passwords like "qwerty" , "123456" , "admin" etc...Laravel have no built in function to check these kind of password but you can validate with regular expression. Another way you can use "unicodeve..
Sovary August 20, 2022 1.68KHello today we are going to talk about how to create custom command Artisan to perform a specific task. Actually, there are built-in Artisan command in Laravel application, example if we want to start Laravel server we will type command "php artisan serve". But f..
Sovary August 16, 2022 1.2KHello today short tutorial is how to get the current URL which live on your browser in Laravel. In some case you want to retrieve the URL link from browser bar which mean current URL...
Sovary August 16, 2022 1.23KIn early version Laravel by default come with laravel-mix which is front end tool to install Bootstrap UI, or else, for latest version Laravel use next generation of front end tool which is Vite. Today we will learn how to install Boostrap 5 using Vite...
Sovary August 12, 2022 1.83KToday tutorial, we will use ajax to make request in Laravel as example. For beginner or student want to complete about ajax get request with parameters Laravel then I will show an example with very simple solution. This is right place for you to learn and experience Laravel tutorial to..
Sovary August 12, 2022 1.5KHello Artisan, this article will show you how to convert a collection to a JSON format in Laravel. We will give you a simple example to turn collection array to JSON. We will assist you to convert collection data eloquent to json in Laravel which you can apply in Laravel 5, Laravel 6, Laravel 7, Laravel 8, Laravel 9...
Sovary August 10, 2022 1.41KThis example we will learn how to get all model columns name from Mode in Laravel. I will guide you all with simple tip to get name of clomns in database from model. You can use this sample example to apply your project in some cases...
Sovary August 8, 2022 1.51KWhen a user register or logged in successfully, the application will create a session to store current logged in data for user. Sometimes to check user role or some logged info then we need current logged in user data...
Sovary August 8, 2022 1.8KIn this tutorial we will learn how to delete specific an JSON item from array. We will implement in pure JavaScript which you can use in front-end or back-end with Node.js as well. We will create a function which required two parameters..
Sovary August 5, 2022 1.53KIn this tutorial we will show you how to use cookie in Laravel, and you will learn to Set Get and Forget the cookie in Laravel. We can do that by checking if the cookie is exist or not...
Sovary August 4, 2022 1.88K