Fernando Gutiérrez Illuminate Database Use Laravel's illuminate/database package in Kirby Docs Source Install Manual Download and extract the folder to site/plugins/db Composer Copy Git Submodule Copy use Beebmx\KirbyDB\DB; DB::table('users')->get(); Version 4.0.1 License MIT Stars 18 Supports K5 K4 K3 Created 22 Jan 2019 Updated 19 Jun 2025 Info Topics Databases Support Docs Issues Latest releases 4.0.1 3.1.0 3.0.0 2.0.0 1.0.4 Similar plugins SQLite Cache Driver SQLite based Cache-Driver K5 K4 K3 <?= $page->counterImage() ?> Pageview Counter Track Page view count and last visited timestamp K5 K4 K3 class MigrationTest extends Migration { public function up() { $result = Db::query( 'ALTER TABLE `my_table` ADD COLUMN `test` INT DEFAULT NULL; '); if (!$result) throw Db::lastError(); } } Migrations Migrations management (eg. for Databases) K5 K4 K3 More by Fernando Gutiérrez More \Beebmx\KirbyEnv::load('main/path'); return [ 'debug' => env('KIRBY_DEBUG', false), 'secret' => env('SECRET_KEY'), 'public' => env('PUBLIC_KEY'), ]; Env Store project credentials and variables in a .env file and access them in Kirby K5 K4 K3 Courier Kirby Courier offers a convenient and painless solution for creating emails tailored for your Kirby website. K5 K4 K3 Kirby Sign Kirby Sign makes it easy to generate signed URLs for your Kirby site. K5 K4