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

Replace space with dash underscore in Laravel

Sometimes we need to replace some character or spaces with another character in laravel or any other programming languages similarly today, i am going to explain how can we replace space with dash “-” symbol with spaces between words such as replace space with dash underscore in laravel to replace-space-with-dash-underscore-in-laravel. This is very useful concept … 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