Fernando Gutiérrez Illuminate Database Use Laravel's illuminate/database package in Kirby Docs Source Download use Beebmx\KirbyDB\DB; DB::table('users')->get(); Version 3.1.0 License MIT Stars 16 Supports K4 K3 Created 22 Jan 2019 Updated 2 Aug 2024 Info Topics Databases Support Docs Issues Latest releases 3.1.0 3.0.0 2.0.0 1.0.4 1.0.3 Similar plugins Khulan - Kirby MongoDB Khulan is a cache driver and content cache with NoSQL interface for Kirby using MongoDB. K5 K4 <?= $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) K3 More by Fernando Gutiérrez More blueprints ├── pages │ ├── default.yml │ ├── home.policy.yml │ ├── simple.policy.yml │ ├── content.yml │ └── post.policy.yml ├── users │ ├── admin.yml │ └── editor.yml └── site.yml Policy Display different fields for different user roles in the Panel K4 \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 K4 K3 'beebmx.kirby-middleware' => [ 'global' => [ MyOwnGlobalMiddleware::class, ], ] Middleware Kirby Middleware provides a powerful mechanism for inspecting and filtering requests entering in your Kirby site. K4