Category : Laravel

As with the Faker library, you can produce fake data for your database tables, which comes really handing in the development phase of your application when you don't have the actual data. With Fake...
Read Article
Laravel collection has a useful method that you can use on collection to combine the items of the collection together. This implode function provided in Laravel Collection works a bit differently t...
Read Article
In this short post, we will go over on How to create a resourceful controller in Laravel and also how to define a single line resource route in the web.php file. Resource Controller With Laravel, we...
Read Article
This tutorial gives a brief guide on how to correctly upgrade the Bootstrap version in the Laravel Project. Your Laravel project comes with a default bootstrap. You can have a look at the default s...
Read Article
If you are a beginner in Laravel you might find the concept of Pivot table a bit complex. But as is the case with any other feature, working with a pivot table in Laravel is a breeze. In this tutor...
Read Article
However, it sounds so basic that Laravel should be handling it by default. But turns out Laravel does not pass the GET URL parameters to the pagination links by default, and there is an extra method y...
Read Article
Recently I stumbled upon a clean and lightweight frontend framework Bulma. Bulma is a free opensource fontend framework based on flexbox and is a good alternate to Bootstrap. Laravel by default is...
Read Article
I recently used JSON Mysql field value for the first time in Laravel and hit the roadblock soon on how to order the data using a field that is a JSON property. Since the data in the JSON property w...
Read Article
I was working on application where I had to create hierarchical relationship for a Model entity and also figure out a way to display it in HTML. I decided to write an article on this as I came acro...
Read Article
Laravel Dusk makes it very simple to Automate Authentication (Login / Logout ) of your application. Dusk has provided generic functions so that you don't have to interact with the Login page and logou...
Read Article