Rudra FrameworkRudra Framework

Создание модели:

php rudra create:model

Краткий вариант:

php rudra cr:ml
Enter table name: test
Enter container: web

Результат:

<?php

namespace App\Containers\Web\Models;

use Rudra\Model\Model;

/**
 * @method static yourMethod()
 *
 * @see TestRepository
 */
class Test extends Model
{
    public static string $table = "test";
    public static string $directory = __DIR__;
}