laracycle/laracycle

Basic Cycle ORM intergration for the Laravel Framework

0.1.0 2019-09-30 17:47 UTC

This package is auto-updated.

Last update: 2024-03-29 03:58:56 UTC


README

$user = new User('code.artisan@failedstartup.com');

$user->addPost(
    new Post('Yet another Medium article')
);

Cycle::transaction()->persist($user)->run();