Laravel

Posts About Laravel

Laravel is a powerful PHP framework that simplifies web development with its elegant syntax and comprehensive toolkit. It streamlines tasks like routing, authentication, and caching, making it ideal for both simple and complex applications.

Retrieving Models with Eloquent in Laravel

Once you have a model and its table, reading data is easy. Think of every Eloquent model as a query builder pointed at its own table. You can...

2 mins read

Filtering by Relationship Existence with whereHas and whereHasMorph

Often you want records based on something about their related records: posts that have comments, users who have placed an order, comments whos...

2 mins read

Working with Dates and Times in Laravel using Carbon

Dates in plain PHP are awkward: strtotime, format strings, manual maths. Carbon wraps all of that in a clean API, and the good news is that La...

2 mins read