Multitenant Laravel Notifications

chrysanthos.xyz - submitted by Chrysanthos

Laravel Notifications are an awesome tool that provides built-in support for sending notifications, in dozens of different channels, like Slack, Telegram, SMS, etc. In this tutorial, we will see how we can customise Laravel Notifications core to accommodate a multi-tenant setup in a single database.

Read more [chrysanthos.xyz]

Updating multiple database records (with independent data) in a single query

jorgeglz.io - submitted by Jorge González

In the world of SQL Databases, it is pretty easy to update one or many records in a table, you just need to execute an UPDATE query with some column-value bindings and some filters if needed, this will help you either update single record, or update many records with the same data. But what if we want to update many records with independent data? 🤔

Read more [jorgeglz.io]

How To Use Laravel With Oracle Database

adevait.com - submitted by Filip Josifovski

As you may know, Oracle Database is not supported out of the box by Laravel. However, like a lot of things that are not supported out of the box, we can actually make Laravel work with Oracle Database. PHP has support for Oracle Database since 2003 through the OCI8 PHP extension. Pair that with the yajra/laravel-oci8 package and boom, we have Laravel working with Oracle Database.

Read more [adevait.com]