2 min read

How to Check the Laravel Version

Laravel

10.07.2023

Laravel is a popular PHP framework known for its elegant syntax and robust features. If you're working with a Laravel project and need to determine the version you're using, there are a few simple met...

2 min read

Laravel JSON column management made easy with AsArrayObject cast

Laravel - Quick Tips

01.03.2023

Hey there! 👋 If you're using Laravel to build your web applications, you might have come across JSON columns in your database tables. While they can be super useful for storing data, it can be a pain...

1 min read

Laravel: How to update pivot columns

Laravel - Quick Tips

24.02.2023

Suppose you're dealing with a complex database schema where you have a many-to-many relationship between two tables connected by a pivot table with additional columns. In such cases, if you need to up...

9 min read

Laravel Collections: Tips and Tricks

Laravel

18.02.2023

Laravel is a popular PHP framework known for its expressive and elegant syntax. One of the many features that make Laravel so popular is its collections. Collections are a powerful tool for workin...

8 min read

Livewire v3 Features

Laravel - Livewire

15.02.2023

The Livewire core has been totally overhauled, and I couldn't be more excited. The new core leans heavily on Alpine, tapping into its Morph, History, and other plugins to take Livewire's capabilit...

6 min read

Laravel 10: release date and upcoming features

Laravel - PHP

13.02.2023

Releasedate of Laravel 10 Taylor Otwell, tweeted Laravel 10 will be released at 14. February 2023 🥳 How to install Laravel 10 before release? You already can checkout Laravel 10 from the maste...

1 min read

Laravel: Remove trailing slash from url via middleware

Laravel - Quick Tips

27.01.2023

In Laravel, every existing route URL can be utilized both with and without a trailing slash, and you'll receive a `HTTP 200` response in either case. However, for search engine optimization purposes,...