In this section you'll find links submitted by others.

Did you write or stumbled across a blog post, tutorial or video that might be interesting for others?

To be able to submit a link you need to log in first.

Log in

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]

πŸ’‘ Hot Reload with Laravel Sail

– chrysanthos.xyz - submitted by Chrysanthos

Using HMR saves time since the part of the page that got changed is refetched automatically and replaced in the DOM . Unfortunately, Laravel Sail Docker configuration does not come with the needed HMR configuration so we need to do a couple of changes before running sail npm run hot.

Read more [chrysanthos.xyz]