LaravelPackages.net
Acme Inc.
Toggle sidebar
as247/wp-eloquent

Eloquent ORM for wordpress.

25.693
44
v2.1.9
About as247/wp-eloquent

as247/wp-eloquent is a Laravel package for eloquent orm for wordpress.. It currently has 44 GitHub stars and 25.693 downloads on Packagist (latest version v2.1.9). Install it with composer require as247/wp-eloquent. Discover more Laravel packages by as247 or browse all Laravel packages to compare alternatives.

Last updated

As247 WpEloquent

This package extract from laravel 8.9

The WpEloquent component is a full database toolkit for PHP, providing an expressive query builder, ActiveRecord style ORM, and schema builder. It currently supports MySQL, Postgres, SQL Server, and SQLite.

Installing

composer require as247/wp-eloquent

Usage Instructions

First, boot Application with a connection.

Use $wpdb connection

use As247\WpEloquent\Application; Application::bootWp();

Use separated connection

use As247\WpEloquent\Application; Application::boot([ 'driver' => 'mysql', 'host' => 'localhost', 'database' => 'database', 'username' => 'root', 'password' => 'password', 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci', 'prefix' => '', ]);

Once the Application booted. You may use it like so:

Using The Query Builder

use As247\WpEloquent\Support\Facades\DB; $users = DB::table('users')->where('votes', '>', 100)->get();

Other core methods may be accessed directly from the Capsule in the same manner as from the DB facade:

use As247\WpEloquent\Support\Facades\DB; $results = DB::select('select * from users where id = ?', [1]);

Using The Schema Builder

use As247\WpEloquent\Support\Facades\Schema; Schema::create('users', function ($table) { $table->increments('id'); $table->string('email')->unique(); $table->timestamps(); });

Using The Eloquent ORM

class User extends As247\WpEloquent\Database\Eloquent\Model {} $users = User::where('votes', '>', 1)->get();

For further documentation on using the various database facilities this library provides, consult the Laravel framework documentation.

Version 1.0

You are looking for v1.x? Check it here https://github.com/as247/wp-eloquent/tree/1.x

Star History Chart