We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Marwa-DB includes an object-relational mapper for interacting with database tables as PHP objects. Example:
use Marwa\DB\ORM\Model; class User extends Model { protected $table = 'users'; } $user = User::find(1);