
Using UUIDs in Laravel Models
In this post, we will look at how we can use UUIDs in Laravel Eloquent models instead of incrementing Ids.
Larashout focuses on Laravel tutorials, PHP patterns, JavaScript snippets, package recommendations, and hands-on web development walkthroughs that stay practical from first read to implementation.
larashout.php
<?php
$larashout = new LaravelBlog();
$larashout->brew('fresh tutorials');
$larashout->mixIn(['Laravel', 'PHP', 'JavaScript']);
$larashout->debug('weird bugs before lunch');
$larashout->ship('code you can actually reuse');
echo $larashout->publish('zero fluff, just useful stuff');

In this post, we will look at how we can use UUIDs in Laravel Eloquent models instead of incrementing Ids.

In this post, I will be going through Laravel Eloquent's whereBetween method which verifies that a column value is between a given range.

In this post, I want to share a quick tip about how to get the last inserted ID inLaravel. While working on your Laravel application, you often need...

In this tutorial, we will learn how to configure your Laravel application with Sentry for better error logging, tracking, and notifications.

Laravel Collection splice method is very useful when you want to remove a portion of a collection and return the removed section.

In this post, we will look at Laravel Notifications, the most beautiful way of handling notifications for your web application through different channels.

Laravel roles and permissions are the most important part of any Laravel based web application in which you want to add restrictions...

Laravel Collection provides the ability to filter a collection's items by using a key value pair by using where() method.

JWT authentication provides a secure way to transmit data between the client and server. In this post, we will look at how we can create a JWT based API.

Laravel Collection provides an easy interface to work with the PHP array. Today, we will be looking at how we can use the toJson() method.

Cloudways is one of the fastest-growing cloud companies in the market, having its data centers in more than 50+ locations around the world.

Recently Laravel 6 has been released which is the latest LTS release. In this post, we will install Laravel 6 on both Windows and Linux.