âš¡ Corepine Modal gives Laravel developers control over how every modal is presented.

Change a default modal into a flyout drawer or draggable bottom sheet by changing one type setting in your modal attributes.
Use it with Livewire stack modals or standalone Blade modals, and choose the UI that fits each interaction.

corepine.dev/docs/modal
image

31

Laravel devs using PostgreSQL, Laravel 13.23 adds support for PostgreSQL's USING clause in migrations. 👀

Why is this useful?

Imagine you have a column storing dates as text (2026-08-02) and want to convert it to a proper DATE column.

PostgreSQL requires a USING clause to describe how existing values should be converted.

Laravel now supports this directly with ->using().
image

40